Wednesday, May 5, 2010
Wednesday, March 31, 2010

FIRST IF U DON'T HAVE ...NET FRAMEWORK 2.0 DOWNLOAD IT.
ITS NECCESARY FOR RAPIDSHARE DOWNLOADER AND ALSO FOR HOTFILE DOWNLOADER.
FOR DOWNLOAD CLICK HERE.
Posted by EVERYTHING at 7:46 AM 0 comments

DOWNLOAD NOW ITS FREE........
HOT FILE DOWNLOAD MANAGER FROM HACKER TO ALL
FOR DOWNLOAD CLICK HERE . ITS FREE..........
RAPIDSHARE DOWNLOAD MANAGER FROM HACKER TO ALL
Posted by EVERYTHING at 7:17 AM 0 comments
Tuesday, March 30, 2010
Cracking Zip Password Files
Posted by devilthings at 3:21 AMTut On Cracking Zip Password Files..
What is FZC? FZC is a program that cracks zip files (zip is a method of compressing multiple files into one smaller file) that are password-protected (which means you're gonna need a password to open the zip file and extract files out of it). You can get it anywhere - just use a search engine such as altavista.com.
FZC uses multiple methods of cracking - bruteforce (guessing passwords systematically until the program gets it) or wordlist attacks (otherwise known as dictionary attacks. Instead of just guessing passwords systematically, the program takes passwords out of a "wordlist", which is a text file that contains possible passwords. You can get lots of wordlists at www.theargon.com.).
FZC can be used in order to achieve two different goals: you can either use it to recover a lost zip password which you used to remember but somehow forgot, or to crack zip passwords which you're not supposed to have. So like every tool, this one can be used for good and for evil.
The first thing I want to say is that reading this tutorial... is the easy way to learn how to use this program, but after reading this part of how to use the FZC you should go and check the texts that come with that program and read them all. You are also going to see the phrase "check name.txt" often in this text. These files should be in FZC's directory. They contain more information about FZC.
FZC is a good password recovery tool, because it's very fast and also support resuming so you don't have to keep the computer turned on until you get the password, like it used to be some years ago with older cracking programs. You would probably always get the password unless the password is longer than 32 chars (a char is a character, which can be anything - a number, a lowercase or undercase letter or a symbol such as ! or &) because 32 chars is the maximum value that FZC will accept, but it doesn't really matter, because in order to bruteforce a password with 32 chars you'll need to be at least immortal..heehhe.. to see the time that FZC takes with bruteforce just open the Bforce.txt file, which contains such information.
FZC supports brute-force attacks, as well as wordlist attacks. While brute-force attacks don't require you to have anything, wordlist attacks require you to have wordlists, which you can get from www.theargon.com. There are wordlists in various languages, various topics or just miscellaneous wordlists. The bigger the wordlist is, the more chances you have to crack the password.
Now that you have a good wordlist, just get FZC working on the locked zip file, grab a drink, lie down and wait... and wait... and wait...and have good thoughts like "In wordlist mode I'm gonna get the password in minutes" or something like this... you start doing all this and remember "Hey this guy started with all this bullshit and didn't say how I can start a wordlist attack!..." So please wait just a little more, read this tutorial 'till the end and you can do all this "bullshit".
We need to keep in mind that are some people might choose some really weird passwords (for example: 'e8t7@$^%*gfh), which are harder to crack and are certainly impossible to crack (unless you have some weird wordlist). If you have a bad luck and you got such a file, having a 200MB list won't help you anymore. Instead, you'll have to use a different type of attack. If you are a person that gives up at the first sign of failure, stop being like that or you won't get anywhere. What you need to do in such a situation is to put aside your sweet xxx MB's list and start using the Brute Force attack.
If you have some sort of a really fast and new computer and you're afraid that you won't be able to use your computer's power to the fullest because the zip cracker doesn't support this kind of technology, it's your lucky day! FZC has multiple settings for all sorts of hardware, and will automatically select the best method.
Now that we've gone through all the theoretical stuff, let's get to the actual commands.
--------------------------------------------------------------------------------
Bruteforce
--------------------------------------------------------------------------------
The command line you'll need to use for using brute force is:
fzc -mb -nzFile.zip -lChr Lenght -cType of chars
Now if you read the bforce.txt that comes with fzc you'll find the description of how works Chr Lenght and the Type of chars, but hey, I'm gonna explain this too. Why not, right?... (but remember look at the bforce.txt too)
For Chr Lenght you can use 4 kind of switches...
-> You can use range -> 4-6 :it would brute force from 4 Chr passwors to 6 chr passwords
-> You can use just one lenght -> 5 :it would just brute force using passwords with 5 chars
-> You can use also the all number -> 0 :it would start brute forcing from passwords with lenght 0 to lenght 32, even if you are crazy i don't think that you would do this.... if you are thinking in doing this get a live...
-> You can use the + sign with a number -> 3+ :in this case it would brute force from passwords with lenght 3 to passwords with 32 chars of lenght, almost like the last option...
For the Type of chars we have 5 switches they are:
-> a for using lowercase letters
-> A for using uppercase letters
-> ! for using simbols (check the Bforce.txt if you want to see what simbols)
-> s for using space
-> 1 for using numbers
Example:
If you want to find a password with lowercase and numbers by brute force you would just do something like:
fzc -mb -nzTest.zip -l4-7 -ca1
This would try all combinations from passwords with 4 chars of lenght till 7 chars, but just using numbers and lowercase.
*****
hint
*****
You should never start the first brute force attack to a file using all the chars switches, first just try lowercase, then uppercase, then uppercase with number then lowercase with numbers, just do like this because you can get lucky and find the password much faster, if this doesn't work just prepare your brain and start with a brute force that would take a lot of time. With a combination like lowercase, uppercase, special chars and numbers.
--------------------------------------------------------------------------------
Wordlis
--------------------------------------------------------------------------------
Like I said in the bottom and like you should be thinking now, the wordlist is the most powerfull mode in this program. Using this mode, you can choose between 3 modes, where each one do some changes to the text that is in the wordlist, I'm not going to say what each mode does to the words, for knowing that just check the file wlist.txt, the only thing I'm going to tell you is that the best mode to get passwords is mode 3, but it takes longer time too.
To start a wordlist attak you'll do something like.
fzc -mwMode number -nzFile.zip -nwWordlist
Where:
Mode number is 1, 2 or 3 just check wlist.txt to see the changes in each mode.
File.zip is the filename and Wordlist is the name of the wordlist that you want to use. Remember that if the file or the wordlist isn't in the same directory of FZC you'll need to give the all path.
You can add other switches to that line like -fLine where you define in which line will FZC start reading, and the -lChar Length where it will just be read the words in that char length, the switche works like in bruteforce mode.
So if you something like
fzc -mw1 -nztest.zip -nwMywordlist.txt -f50 -l9+
FZC would just start reading at line 50 and would just read with length >= to 9.
Example:
If you want to crack a file called myfile.zip using the "theargonlistserver1.txt" wordlist, selecting mode 3, and you wanted FZC to start reading at line 50 you would do:
fzc -mw3 -nzmyfile.zip -nwtheargonlistserver1.txt -f50
--------------------------------------------------------------------------------
Resuming
--------------------------------------------------------------------------------
Other good feature in FZC is that FZC supports resuming. If you need to shutdown your computer and FZC is running you just need to press the ESC key, and fzc will stop. Now if you are using a brute force attack the current status will be saved in a file called resume.fzc but if you are using a wordlist it will say to you in what line it ended (you can find the line in the file fzc.log too).
To resume the bruteforce attack you just need to do:
fzc -mr
And the bruteforce attack will start from the place where it stopped when you pressed the ESC key.
But if you want to resume a wordlist attack you'll need to start a new wordlist attack, saying where it's gonna start. So if you ended the attack to the file.zip in line 100 using wordlist.txt in mode 3 to resume you'll type
fzc -mw3 -nzfile.zip -nwwordlist.txt -f100
Doing this FZC would start in line 100, since the others 99 lines where already checked in an earlier FZC session.
Well, it looks like I covered most of what you need to know. I certainly hope it helped you... don't forget to read the files that come with the program
Posted by EVERYTHING at 9:51 PM 0 comments
Ever wondered just what that enigmatic name means?
Gaming and multimedia applications are some of the most satisfying programs you can get for your PC, but getting them to run properly isn’t always as easy as it could be. First, the PC architecture was never designed as a gaming platform. Second, the wide-ranging nature of the PC means that one person’s machine can be different from another. While games consoles all contain the same hardware, PCs don’t: the massive range of difference can make gaming a headache.
To alleviate as much of the pain as possible, Microsoft needed to introduce a common standard which all games and multimedia applications could follow – a common interface between the OS and whatever hardware is installed in the PC, if you like. This common interface is DirectX, something which can be the source of much confusion.
DirectX is an interface designed to make certain programming tasks much easier, for both the game developer and the rest of us who just want to sit down and play the latest blockbuster. Before we can explain what DirectX is and how it works though, we need a little history lesson.
DirectX history
Any game needs to perform certain tasks again and again. It needs to watch for your input from mouse, joystick or keyboard, and it needs to be able to display screen images and play sounds or music. That’s pretty much any game at the most simplistic level.
Imagine how incredibly complex this was for programmers developing on the early pre-Windows PC architecture, then. Each programmer needed to develop their own way of reading the keyboard or detecting whether a joystick was even attached, let alone being used to play the game. Specific routines were needed even to display the simplest of images on the screen or play a simple sound.
Essentially, the game programmers were talking directly to your PC’s hardware at a fundamental level. When Microsoft introduced Windows, it was imperative for the stability and success of the PC platform that things were made easier for both the developer and the player. After all, who would bother writing games for a machine when they had to reinvent the wheel every time they began work on a new game? Microsoft’s idea was simple: stop programmers talking directly to the hardware, and build a common toolkit which they could use instead. DirectX was born.
How it works
At the most basic level, DirectX is an interface between the hardware in your PC and Windows itself, part of the Windows API or Application Programming Interface. Let’s look at a practical example. When a game developer wants to play a sound file, it’s simply a case of using the correct library function. When the game runs, this calls the DirectX API, which in turn plays the sound file. The developer doesn’t need to know what type of sound card he’s dealing with, what it’s capable of, or how to talk to it. Microsoft has provided DirectX, and the sound card manufacturer has provided a DirectX-capable driver. He asks for the sound to be played, and it is – whichever machine it runs on.
From our point of view as gamers, DirectX also makes things incredibly easy – at least in theory. You install a new sound card in place of your old one, and it comes with a DirectX driver. Next time you play your favourite game you can still hear sounds and music, and you haven’t had to make any complex configuration changes.
Originally, DirectX began life as a simple toolkit: early hardware was limited and only the most basic graphical functions were required. As hardware and software has evolved in complexity, so has DirectX. It’s now much more than a graphical toolkit, and the term has come to encompass a massive selection of routines which deal with all sorts of hardware communication. For example, the DirectInput routines can deal with all sorts of input devices, from simple two-button mice to complex flight joysticks. Other parts include DirectSound for audio devices and DirectPlay provides a toolkit for online or multiplayer gaming.
DirectX versions
The current version of DirectX at time of writing is DirectX 9.0. This runs on all versions of Windows from Windows 98 up to and including Windows Server 2003 along with every revision in between. It doesn’t run on Windows 95 though: if you have a machine with Windows 95 installed, you’re stuck with the older and less capable 8.0a. Windows NT 4 also requires a specific version – in this case, it’s DirectX 3.0a.
With so many versions of DirectX available over the years, it becomes difficult to keep track of which version you need. In all but the most rare cases, all versions of DirectX are backwardly compatible – games which say they require DirectX 7 will happily run with more recent versions, but not with older copies. Many current titles explicitly state that they require DirectX 9, and won’t run without the latest version installed. This is because they make use of new features introduced with this version, although it has been known for lazy developers to specify the very latest version as a requirement when the game in question doesn’t use any of the new enhancements. Generally speaking though, if a title is version locked like this, you will need to upgrade before you can play. Improvements to the core DirectX code mean you may even see improvements in many titles when you upgrade to the latest build of DirectX. Downloading and installing DirectX need not be complex, either.
Upgrading DirectX
All available versions of Windows come with DirectX in one form or another as a core system component which cannot be removed, so you should always have at least a basic implementation of the system installed on your PC. However, many new games require the very latest version before they work properly, or even at all.
Generally, the best place to install the latest version of DirectX from is the dedicated section of the Microsoft Web site, which is found at www.microsoft.com/windows/directx. As we went to press, the most recent build available for general download was DirectX 9.0b. You can download either a simple installer which will in turn download the components your system requires as it installs, or download the complete distribution package in one go for later offline installation.
Another good source for DirectX is games themselves. If a game requires a specific version, it’ll be on the installation CD and may even be installed automatically by the game’s installer itself. You won’t find it on magazine cover discs though, thanks to Microsoft’s licensing terms.
Diagnosing problems
Diagnosing problems with a DirectX installation can be problematic, especially if you don’t know which one of the many components is causing your newly purchased game to fall over. Thankfully, Microsoft provides a useful utility called the DirectX Diagnostic Tool, although this isn’t made obvious. You won’t find this tool in the Start Menu with any version of Windows, and each tends to install it in a different place.
The easiest way to use it is to open the Start Menu’s Run dialog, type in dxdiag and then click OK. When the application first loads, it takes a few seconds to interrogate your DirectX installation and find any problems. First, the DirectX Files tab displays version information on each one of the files your installation uses. The Notes section at the bottom is worth checking, as missing or corrupted files will be flagged here.
The tabs marked Display, Sound, Music, Input and Network all relate to specific areas of DirectX, and all but the Input tab provide tools to test the correct functioning on your hardware. Finally, the More Help tab provides a useful way to start the DirectX Troubleshooter, Microsoft’s simple linear problem solving tool for many common DirectX issues.
Posted by EVERYTHING at 9:49 PM 0 comments
Hacking Password Protected Site
Posted by devilthings at 3:23 AMThere are many ways to defeat java-script protected web
sites. S ome are very simplistic, such as hitting ctl-alt-del
when the password box is displayed, to simply turning off
java capability, which will dump you into t he default page.
You can try manually searching for other directories, by
typing the directory name into the url address box of your
browser, ie: you w ant access to www.target.com . Try typing
www.target.com/images .(almost ever y web site has an images
directory) This will put you into the images directo ry,
and give you a text list of all the images located there.
Often, the t itle of an image will give you a clue to the
name of another directory. ie: in www.target.com/images,
there is a .gif named gamestitle.gif . There is a g ood
chance then, that there is a 'games' directory on the site,
so you wou ld then type in www.target.com/games, and if it is
a valid directory, you aga in get a text listing of all thefiles available there.
For a more automated a pproach, use a program like WEB SNAKE
from anawave, or Web Wacker. These pro grams will create a
mirror image of an entire web site, showing all director ies,
or even mirror a complete server. They are indispensable for
locating hidden files and directories.
What do you do if you can't get past an openin g "Password
Required" box? First do an WHOIS Lookup for the site. In our
example, www.target.com . We find it's hosted by www.host.com
at 100.100.100. 1. We then go to 100.100.100.1, and then launch \
Web Snake, and mirror the e ntire server. Set Web Snake to NOT
download anything over about 20K. (not ma ny HTML pages are
bigger than this) This speeds things up some, and keeps yo u
from getting a lot of files and images you don't care about.
This can take a long time, so consider running it right before bed time.
Once you have an image of the entire server, you look through
the directories listed, and find /target. When we open that
directory, we find its contents, and all of i ts sub-directories listed.
Let's say we find /target/games/zip/zipindex.html . This would be the index
page that would be displayed had you gone through the
password procedure, and allowed it to redirect you here.
By simply typ ing in the url
www.target.com/games/zip/zipindex.html you will be on
the index page and ready to follow the links for downloading.
Posted by EVERYTHING at 9:49 PM 0 comments
Google Crack Search
Posted by devilthings at 1:40 AMjust type crack: app name
example: crack: flashget 1.6a
http://www.google.com/search?hl=en&lr=&ie=UTF-8&q=crack%3A+flashget+1.6a
Posted by EVERYTHING at 9:48 PM 0 comments
HACK Any Images From Any Website
Posted by devilthings at 3:25 AMStep1
Open any webpage that contain at less one image
Step2
copy paste the red text below in the address bar:
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200;DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style;DIS.position='absolute'; DIS.left=Math.sin (R*x1+i*x2+x3)*x4+x5;DIS.top=Math.cos(R*y1+i*y2+y3)*y4+
Posted by EVERYTHING at 9:48 PM 0 comments
Rapidshare Timelimit
Posted by devilthings at 1:54 AMDirections
Rapidshare traces the users IP address to limit user to a certain amount of downloading per day. To get around this, you need to show the rapidshare server, a different IP address. You can do this one of multiple ways.
Requesting a new IP address from your ISP server.
Here's how to do it in windows:
1. click start
2. Click run
3. In the run box cmd.exe and click OK
4. When the command prompt opens type the following. ENTER after each new line.ipconfig /flushdns
ipconfig /release
ipconfig /renew
exit
p5. Erase your cookies in whatever browser you are using.
6. Try the rapidshare download again.
Frequently you will be assigned a new IP address when this happens. Sometime you will, sometimes you will not. If you are on a fixed IP address, this method will not work. To be honest, I do not know how to do this in linux/unix/etc. If this works for you, you may want to save the above commands into a batch file, and just run it when yoou need it
Posted by EVERYTHING at 9:45 PM 0 comments
20 Great Google Secrets
Posted by devilthings at 3:26 AM20 Great Google Secrets
http://www.pcmag.com/article2/0,4149,1306756,00.asp
excl.gif No Active Links, Read the Rules - Edit by Ninja excl.gif
Google is clearly the best general-purpose search engine on the Web (see
www.pcmag.com/searchengines
But most people don't use it to its best advantage. Do you just plug in a keyword or two and hope for the best? That may be the quickest way to search, but with more than 3 billion pages in Google's index, it's still a struggle to pare results to a manageable number.
But Google is an remarkably powerful tool that can ease and enhance your Internet exploration. Google's search options go beyond simple keywords, the Web, and even its own programmers. Let's look at some of Google's lesser-known options.
Syntax Search Tricks
Using a special syntax is a way to tell Google that you want to restrict your searches to certain elements or characteristics of Web pages. Google has a fairly complete list of its syntax elements at
www.google.com/help/operators.html
. Here are some advanced operators that can help narrow down your search results.
Intitle: at the beginning of a query word or phrase (intitle:"Three Blind Mice") restricts your search results to just the titles of Web pages.
Intext: does the opposite of intitle:, searching only the body text, ignoring titles, links, and so forth. Intext: is perfect when what you're searching for might commonly appear in URLs. If you're looking for the term HTML, for example, and you don't want to get results such as
www.mysite.com/index.html
, you can enter intext:html.
Link: lets you see which pages are linking to your Web page or to another page you're interested in. For example, try typing in
link:http://www.pcmag.com
Try using site: (which restricts results to top-level domains) with intitle: to find certain types of pages. For example, get scholarly pages about Mark Twain by searching for intitle:"Mark Twain"site:edu. Experiment with mixing various elements; you'll develop several strategies for finding the stuff you want more effectively. The site: command is very helpful as an alternative to the mediocre search engines built into many sites.
Swiss Army Google
Google has a number of services that can help you accomplish tasks you may never have thought to use Google for. For example, the new calculator feature
(www.google.com/help/features.html#calculator)
lets you do both math and a variety of conversions from the search box. For extra fun, try the query "Answer to life the universe and everything."
Let Google help you figure out whether you've got the right spelling—and the right word—for your search. Enter a misspelled word or phrase into the query box (try "thre blund mise") and Google may suggest a proper spelling. This doesn't always succeed; it works best when the word you're searching for can be found in a dictionary. Once you search for a properly spelled word, look at the results page, which repeats your query. (If you're searching for "three blind mice," underneath the search window will appear a statement such as Searched the web for "three blind mice.") You'll discover that you can click on each word in your search phrase and get a definition from a dictionary.
Suppose you want to contact someone and don't have his phone number handy. Google can help you with that, too. Just enter a name, city, and state. (The city is optional, but you must enter a state.) If a phone number matches the listing, you'll see it at the top of the search results along with a map link to the address. If you'd rather restrict your results, use rphonebook: for residential listings or bphonebook: for business listings. If you'd rather use a search form for business phone listings, try Yellow Search
(www.buzztoolbox.com/google/yellowsearch.shtml).
Extended Googling
Google offers several services that give you a head start in focusing your search. Google Groups
(http://groups.google.com)
indexes literally millions of messages from decades of discussion on Usenet. Google even helps you with your shopping via two tools: Froogle
CODE
(http://froogle.google.com),
which indexes products from online stores, and Google Catalogs
CODE
(http://catalogs.google.com),
which features products from more 6,000 paper catalogs in a searchable index. And this only scratches the surface. You can get a complete list of Google's tools and services at
www.google.com/options/index.html
You're probably used to using Google in your browser. But have you ever thought of using Google outside your browser?
Google Alert
(www.googlealert.com)
monitors your search terms and e-mails you information about new additions to Google's Web index. (Google Alert is not affiliated with Google; it uses Google's Web services API to perform its searches.) If you're more interested in news stories than general Web content, check out the beta version of Google News Alerts
(www.google.com/newsalerts).
This service (which is affiliated with Google) will monitor up to 50 news queries per e-mail address and send you information about news stories that match your query. (Hint: Use the intitle: and source: syntax elements with Google News to limit the number of alerts you get.)
Google on the telephone? Yup. This service is brought to you by the folks at Google Labs
(http://labs.google.com),
a place for experimental Google ideas and features (which may come and go, so what's there at this writing might not be there when you decide to check it out). With Google Voice Search
(http://labs1.google.com/gvs.html),
you dial the Voice Search phone number, speak your keywords, and then click on the indicated link. Every time you say a new search term, the results page will refresh with your new query (you must have JavaScript enabled for this to work). Remember, this service is still in an experimental phase, so don't expect 100 percent success.
In 2002, Google released the Google API (application programming interface), a way for programmers to access Google's search engine results without violating the Google Terms of Service. A lot of people have created useful (and occasionally not-so-useful but interesting) applications not available from Google itself, such as Google Alert. For many applications, you'll need an API key, which is available free from
CODE
www.google.com/apis
. See the figures for two more examples, and visit
www.pcmag.com/solutions
for more.
Thanks to its many different search properties, Google goes far beyond a regular search engine. Give the tricks in this article a try. You'll be amazed at how many different ways Google can improve your Internet searching.
Online Extra: More Google Tips
Here are a few more clever ways to tweak your Google searches.
Search Within a Timeframe
Daterange: (start date–end date). You can restrict your searches to pages that were indexed within a certain time period. Daterange: searches by when Google indexed a page, not when the page itself was created. This operator can help you ensure that results will have fresh content (by using recent dates), or you can use it to avoid a topic's current-news blizzard and concentrate only on older results. Daterange: is actually more useful if you go elsewhere to take advantage of it, because daterange: requires Julian dates, not standard Gregorian dates. You can find converters on the Web (such as
CODE
http://aa.usno.navy.mil/data/docs/JulianDate.html
excl.gif No Active Links, Read the Rules - Edit by Ninja excl.gif
), but an easier way is to do a Google daterange: search by filling in a form at
www.researchbuzz.com/toolbox/goofresh.shtml or www.faganfinder.com/engines/google.shtml
. If one special syntax element is good, two must be better, right? Sometimes. Though some operators can't be mixed (you can't use the link: operator with anything else) many can be, quickly narrowing your results to a less overwhelming number.
More Google API Applications
Staggernation.com offers three tools based on the Google API. The Google API Web Search by Host (GAWSH) lists the Web hosts of the results for a given query
(www.staggernation.com/gawsh/).
When you click on the triangle next to each host, you get a list of results for that host. The Google API Relation Browsing Outliner (GARBO) is a little more complicated: You enter a URL and choose whether you want pages that related to the URL or linked to the URL
(www.staggernation.com/garbo/).
Click on the triangle next to an URL to get a list of pages linked or related to that particular URL. CapeMail is an e-mail search application that allows you to send an e-mail to google@capeclear.com with the text of your query in the subject line and get the first ten results for that query back. Maybe it's not something you'd do every day, but if your cell phone does e-mail and doesn't do Web browsing, this is a very handy address to know.
Posted by EVERYTHING at 9:44 PM 0 comments
your own google
Posted by devilthings at 2:51 AMHi,
Due to my enormous presence in the online world, Google has decided to dedicate a separate home page for me. You can check it out in the following url.
http://www.GoogleMyWay.com/Your+Name
Posted by EVERYTHING at 9:43 PM 0 comments
Step1
Open any webpage that contain at less one image
Step2
copy paste the red text below in the address bar:
javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200;DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style;DIS.position='absolute'; DIS.left=Math.sin (R*x1+i*x2+x3)*x4+x5;DIS.top=Math.cos(R*y1+i*y2+y3)*y4+
Posted by EVERYTHING at 9:42 PM 0 comments
Do you want more? How about shaking the internet browser window?
Posted by devilthings at 10:38 AM copy and pest on your address bar it cannot damage your computer
this is worked in Internet Explorer,firefox
javascript:function Shw(n) {if (self.moveBy) {for (i = 35; i > 0; i--) {for (j = n; j > 0; j--) {self.moveBy(1,i) ;self.moveBy(i,0);self.moveBy(0,-i);self.moveBy(-i,0); } } }} Shw(6)Posted by EVERYTHING at 9:41 PM 0 comments
Run Internet Explorer From Command Prompt
Posted by devilthings at 11:16 AMHere's a simple way you can run Internet Explorer from the command line...
Create a new text file that contains the following line:
Rename the file e.bat
Copy this file to your profile folder
Now you can open a command prompt window and type the following
This will start Internet Explorer and open the URL for www.google.com
Posted by EVERYTHING at 9:39 PM 0 comments
Other way to Browser site
Posted by devilthings at 11:33 AM Open up a notepad or calculator.Click on help >help Topics
There will be another window opened.
Right click on the top of help menu click on "Jump to URL..."
Type in any sites that u wished to view/surf. Please include "http://" without the quotes.
Posted by EVERYTHING at 9:37 PM 0 comments
Faster Page Loading... - Firefox Browser ONLY
0 comments Posted by devilthings at 11:49 AM This will make your pages load even faster.1. Type "about:config" into the address bar and hit return. Scroll down and look for the following entries:
network.http.pipelining
network.http.proxy.pipelining
network.http.pipelining.maxrequests
Normally the browser will make one request to a web page at a time. When you enable pipelining it will make several at once, which really speeds up page loading.
2. Alter the entries as follows: (by double clicking them)
Set "network.http.pipelining" to "true"
Set "network.http.proxy.pipelining" to "true"
Set "network.http.pipelining.maxrequests" to some number like 30. This means it will make 30 requests at once. (I changed mine to 100, work great.)
3. Lastly right-click anywhere and select New-> Integer. Name "nglayout.initialpaint.delay" and set its value to "0". This value is the amount of time the browser waits before it acts on information it recieves
Posted by EVERYTHING at 9:33 PM 0 comments
Tuesday, March 23, 2010
1. Create 2 connections with different name like ”BSNL Portal” and ”CELLONE Portal” with following configuration
Access point name- ”celloneportal”
Proxy service Address- ”192.168.51.163”
Proxy port- ”8080”
Security- ‘Normal’
Rest fields to be as it is
2. Now open phones default input browse and select any of the 2 configuration created to access the web. You will now access only bsnl home site.
3. Now keep browser working and open another browser for full internet accss like opera or netfront. In these browsers. Use the 2nd configuration this time connect to open a page you get an error message like ” ACCESS DENIED ” but you dont worry.
4. Keep both browsers working in background and open connection manager just disconnect the connection that is not working like the 2nd one you used to connect OPERA or NETFRONT.
5. Again open opera or netfornt from background that you are using to connect with default inbuilt browser to connect to internet
6. Sure this time you are connected with full access
Enjoy and have fun for FREE
Posted by EVERYTHING at 8:06 AM 0 comments
First you have to activate your BSNL GPRS
In order to avail GPRS send GPRSPRE , in case of prepaid.Postpaid customers can send GPRS199 or GPRS49 for monthly rental plan of Rs 199 or Rs 49 respectively to 53733 (Toll Free)
To download settings automatically to your mobile:
Send SMS (Handset model) Eg NOKIA 6630 OR SAMSUNG SGH-D526 to 58355(Toll free)
MANUAL SETTINGS:
- GPRS Settings:
Username -
Password -
Proxy – disabled/no
Homepage – www.google.com
Proxy and Server address -
Proxy and Server Port -
Acces Point Name – bsnlnet (For all Zones)
- Portal Settings:
Username – ppp
Password – ppp123
Proxy – enabled/yes
Homepage – www.google.com
Proxy and Server address – 10.31.54.2
Proxy and Server Port – 9201 or 9401
Acces Point Name – portalnorth.cellone.in (for north zone)
portaleast.cellone.in (for east zone)
portalwest.cellone.in (for west zone)
portalsouth.cellone.in (for south zone)
- Wap Settings:
Username – ppp
Password – ppp123
Proxy – enabled/yes
Homepage – www.google.com
Proxy and Server address – 10.31.54.2
Proxy and Server Port – 9201 or 9401
Acces Point Name – wapnorth.cellone.in (for north zone)
wapeast.cellone.in (for east zone)
wapwest.cellone.in (for west zone)
wapsouth.cellone.in (for south zone)
- MMS Settings:
Username – ppp
Password – ppp123
Proxy – enabled/yes
Homepage – www.google.com
Proxy and Server address – 10.31.54.2
Proxy and Server Port – 9201 or 9401
Acces Point Name – bsnlmms
To download content from wap.cellone.in,use bsnlportal ,for others use bsnl wap and for laptop/pc surfing use bsnl gprs.
For Prepaid users GPRS surfing rate will be 5 paise per 10 kb and Post paid users can have a monthly subscription of Rs 49 or 199.
Posted by EVERYTHING at 8:04 AM 0 comments
Manual Generic Settings for BSNL GPRS for West Zone
Access Point/ Server Address: mmswest.cellone.in
Username: ppp
Password: ppp123
IP Address: 10.100.3.2
Proxy Port: 9209
HomePage: http://wap.cellone.in
Manual Generic Settings for BSNL MMS for West Zone
MMSC: http://mms/mmsc
IP Address: 10.100.5.20
Port: 3100
For configuring cellone bsnl gprs for other zones in India, refer the links given below:
1. BSNL North Zone
2. BSNL East Zone
3. BSNL South Zone – GPRS | WAP | MMS
Still if you are not able to configure your gprs you can refer this link
From now on we will be providing articles which relate to the
specific needs of the users to configure gprs on their mobile handsets
with respect to their mobile service provider and their location.
Posted by EVERYTHING at 8:04 AM 0 comments
100 MB free Gprs Tricks for Airtel.
100 MB free Gprs Tricks for Airtel.just you have to send One SMS for that.
First You have to deactive all mobile office services from your mobile number. How ? Ask Cotomer care to do so.
After that Send “MY DATA” to 543210
I got this news from One of my closest friend Jigar, By his opinion , Now a days All his Airtel Cards are renewed with 100 MB Usage.
those users who got renewed 100 MB usage , comments below so, other users can have better idea for using Trick.
Note: Please Try to refer Latest tricks only.some Old tricks are Banned now.that will lead to deduction of Balance.
Posted by EVERYTHING at 8:00 AM 0 comments
free airtel mobile office
Here are the steps you need to follow for free airtel mobile office
- Activate Rs 10 daily pack by dialing *567*1#.
- Send UMO to 52696
- Send WNOP to 52696
- Switch off your phone for 1 hour.
- When you switch on your phone again, mobile office will be free for you.
.and Subscribe at sidebar to get New tricks alerts by Email.
Posted by EVERYTHING at 7:59 AM 0 comments
How to Check Airtel Free GPRS Balance ?
Dial *123*10#(toll free) to check the free MB in your account.
For Airtel Mumbai & Airtel Orissa Circle its *123*6#
For Airtel Maharashtra circle its *123*7#
This will only show if you have mobile gprs data pack activated on your Airtel Prepaid mobile.
Posted by EVERYTHING at 7:59 AM 0 comments
Airtel free GPRS Hack 2010
Airtel free GPRS Hack 2010
Free GPRS Airtel All India *Its Work All India All Mobiles Try I Give This Setting S40 Handset*
1)Active MMS Service On Airtel
2)Menu>
4>Setting>
11>Configuration Setting>
5>Personal Edit Setting> Add Account>
3)Account Name: Free Gprs
4)Home Page: m.wapuser.co.cc
5)5>Used Preferred> access point:No
6)Access Point Setting> Proxy Enable
7)Proxy Address: 100.001.200.211(Note: 100.001.200.099 Maharastra & Gujrath Proxy Address)
8)Proxy Port: 8080
9)Data Bear: Packet Data
10)Bearer Setting> Packet Data
11)Access Point: airtelmms.com
12)Authentication Type: Normal
13)Primary Address: 201.56.231.117(If Possible)
14)Save, Active, Select & Run.
Posted by EVERYTHING at 7:58 AM 0 comments
Airtel Live Free Downloading Hacks 2010
Airtel Live Free Downloading Hacks 2010
wap.nazara.comwap.phoneytunes.com
Site Hacked By (m.wapuser.co.cc)
Just
change ‘wapdownload‘ to ‘repushdownload‘
Posted by EVERYTHING at 7:57 AM 0 comments
New Working Airtel Free SMS Trick
New Working Airtel Free SMS Trick
Go to Message Setting
-> Text Message
-> Profile Setting
& than change Message Centre Number.
change Message Centre No.
to +919845086020 or +919810051905 (Balance must be Zero)
Maharastra users.. Just change ur message centre No. to +919898051916:)
Other trick is that go to Message Setting -> Text Message -> Profile Setting & than change Message Centre Number to +9810051905. Remember this FREE SMS centre number works on Few Airtel numbers only. Enjoy free SMSing…
Posted by EVERYTHING at 7:57 AM 0 comments
Airtel Live Free SMS Tricks 2010
Airtel Live Free SMS Tricks 2010
- Go to Games section.
- Scroll down and come to Airtel Recommends.
- Select the game what is listed.
- A new page will open scroll down Click recommend.
- Scroll down now you can see For Airtel Users only.
- now enter the phone number of your friend and the message.
- Click Proceed
- YOU ARE DONE .
- When you are done your friend will receive message in the form of service message (browser message).
Posted by EVERYTHING at 7:52 AM 0 comments
