First on Internet

Archive for August 2013

NEW VODAFONE 3G SPEED 600-700KBPS 31th aug 2013 [ UPDATED ]

By : rixczen


Features of New Vodafone TCP Config 


  • Based on TCP Protocol by Spotflux
  • Doesn't contains any high speed proxy or server(You can edit by yourself)
  • No Sim Blocking
  • Working in “0″ Balance Only in some state or mantain balanc as 1
  • Run Pinger as administrator to lower the disconnection if faced
  • No Registration Required
  • Easy to use
  • Use NMD VPN
Steps to connect this Vodafone TCP Config

  • Download Vodafone TCP Trick Config from the attachment
  • Extract it, and Paste it into NMD VPN Config files
  • Location of NMD VPN Config files is C:/program files/NMDVPN/config
  • If you do not have NMD VPN, Then Download NMD VPN
  • Use Acces Point as: www
  • Simple Connect,
  • It will be connected instantly :)




DOWNLOAD CONFIG :  VODA TCP.rar

THANKS FOR YOUR COMMENTS , HERE IS THE PASSWORD : kanishque100

CREATE ANY KEY GENERATOR

By : Unknown

 

How to make key generators?

Introduction

------------
I takeA no responsibility of the usage of this information.
This tutorial, is for educational knowledge ONLY.
Hi there, in this tutorial, I intend to teach you how to make a pretty
simple keygen, of a program called W3Filer 32 V1.1.3.


W3Filer is a pretty good web downloader...
I guess some of you might know the program.
I`ll assume you know:
A.How to use debugger (in this case, SoftIce).
B.How to crack, generally (finding protection routines,patching them,etc...).
C.How to use Disassembler (This knowledge can help).
D.Assembly.
E.How to code in Turbo Pascal ™.
Tools you`ll need:
A.SoftIce 3.00/01 or newer.
B.WD32Asm. (Not a must).
C.The program W3Filer V1.13 (if not provided in this package), can be found in
www.windows95.com I believe.
D.Turbo Pascal (ANY version).
Well, enough blah blah, let's go cracking...
Run W3Filer 32.
A nag screen pops, and , demands registration (Hmm, this sux ;-)) Now,
We notice this program has some kind of serial number (Mine is 873977046),
Let's keep the serial in mind, I bet we`ll meet it again while we're on
the debugger.
Well, now, let's put your name and a dummy reg code...
set a BP on GetDlgItemTextA, and, press OK.
We pop inside GetDlgItemTextA, Lets find the registration routine...
I`ll save you the work, the registration routine is this:
:00404DB2 8D95A8FAFFFF lea edx, dword ptr [ebp+FFFFFAA8]
:00404DB8 52 push edx ---> Your user name here.
:00404DB9 E80B550000 call 0040A2C9 ---> Registration routine.
:00404DBE 83C408 add esp, 00000008 ---> Dunno exactly what is it.
:00404DC1 85C0 test eax, eax ---> Boolean identifier, 0 if
:00404DC3 7D17 jge 00404DDC ---> registration failed, 1 if
OK.
Well, Let's enter the CALL 40A2C9, and see what's inside it:
(Please read my comments in the code).
* Referenced by a CALL at Addresses:
|:00404DB9 , :00407F76
|
:0040A2C9 55 push ebp
:0040A2CA 8BEC mov ebp, esp
:0040A2CC 81C4B0FEFFFF add esp, FFFFFEB0
:0040A2D2 53 push ebx
:0040A2D3 56 push esi
:0040A2D4 57 push edi
:0040A2D5 8B5508 mov edx, dword ptr [ebp+08]
:0040A2D8 8DB500FFFFFF lea esi, dword ptr [ebp+FFFFFF00]
:0040A2DE 33C0 xor eax, eax
:0040A2E0 EB16 jmp 0040A2F8
* Referenced by a (U)nconditional or ©onditional Jump at Address:
|:0040A2FB©
|
:0040A2E2 0FBE0A movsx ecx, byte ptr [edx] ----> Here Starts the
interesting part.
:0040A2E5 83F920 cmp ecx, 00000020 ----> ECX is the the current
char in the user name, Hmm, 20h=' '...
:0040A2E8 740D je 0040A2F7 ----> Let's see,
:0040A2EA 8A0A mov cl, byte ptr [edx] ----> Generally, all this loop
does, is copying
the user name from
[EDX], to [ESI], WITHOUT the spaces!
(Keep this in mind! ).
:0040A2EC 880C06 mov byte ptr [esi+eax], cl
:0040A2EF 42 inc edx
:0040A2F0 40 inc eax
:0040A2F1 C6040600 mov byte ptr [esi+eax], 00
:0040A2F5 EB01 jmp 0040A2F8
* Referenced by a (U)nconditional or ©onditional Jump at Address:
|:0040A2E8©
|
:0040A2F7 42 inc edx
* Referenced by a (U)nconditional or ©onditional Jump at Addresses:
|:0040A2E0(U), :0040A2F5(U)
|
:0040A2F8 803A00 cmp byte ptr [edx], 00
:0040A2FB 75E5 jne 0040A2E2 ----------------> This is the loop , we got
what it does,
Let's continue tracing
the code...
:0040A2FD 56 push esi --------> The user name is pushed, in order
to
Upcase it's chars.
* Reference To: USER32.CharUpperA, Ord:0000h
|
:0040A2FE E80F330000 Call User!CharUpper ---> After this, our name is in
upper case.
:0040A303 56 push esi -----> Our name in upper case here.
* Reference To: cw3220mt._strlen, Ord:0000h
|
:0040A304 E86F300000 Call 0040D378 ---> This is the length of our name.
:0040A309 59 pop ecx
:0040A30A 8BC8 mov ecx, eax ---> ECX=Length.
:0040A30C 83F904 cmp ecx, 00000004 ---> Length>=4 (MUST).
:0040A30F 7D05 jge 0040A316 ---> Let's go to this address...
:0040A311 83C8FF or eax, FFFFFFFF
:0040A314 EB67 jmp 0040A37D
* Referenced by a (U)nconditional or ©onditional Jump at Address:
|:0040A30F©
|
:0040A316 33D2 xor edx, edx
:0040A318 33C0 xor eax, eax
:0040A31A 3BC8 cmp ecx, eax
:0040A31C 7E17 jle 0040A335 ---> (Not important, just another useless
checking).
===================================================================================
============ FROM HERE AND ON, THE IMPORTANT CODE, PAY ATTENTION ==================
===================================================================================
One thing before we continue, EDX = 00000000h as we enter to the next instructions.
* Referenced by a (U)nconditional or ©onditional Jump at Address:
|:0040A333©
|
:0040A31E 0FBE1C06 movsx ebx, byte ptr [esi+eax] ---> EBX <--- char in user
name, offset EAX.
:0040A322 C1E303 shl ebx, 03 -----> Hmm, it shl's the char by 03h...
(Remember that).
:0040A325 0FBE3C06 movsx edi, byte ptr [esi+eax] ---> Now EDI <--- Char in
user name , offset EAX.
:0040A329 0FAFF8 imul edi, eax -----> It multiplies the char by the
offset in user name! (Remember that).
:0040A32C 03DF add ebx, edi -----> Adds the result to EBX (That was
Shelled (Ding Dong =)).
:0040A32E 03D3 add edx, ebx -----> EDX=EDX+EBX!!! - This is the CORE
of this registration routine!!!
:0040A330 40 inc eax -----> Increase EAX by one (next char).
:0040A331 3BC8 cmp ecx, eax
:0040A333 7FE9 jg 0040A31E ----> If ECX<EAX then, we leave the
loop.
* Referenced by a (U)nconditional or ©onditional Jump at Address:
|:0040A31C©
|
:0040A335 A120674100 mov eax, dword ptr [00416720] ---> HMMMMMM, What's in
here?????
:0040A33A C1F803 sar eax, 03 ---------> WAIT! Please type in SIce '?
EAX'
Does this number in EAX look
familiar to us? ;-)
If you still don`t understand,
than, It's
our SERIAL NUMBER! (PLEASE, take
your time, and check by
yourself - don`t trust me!). OK,
so now we know,
That it SHR's EAX by 03 (SAR is
almost identical to SHR).
:0040A33D 03D0 add edx, eax ---------> Hmm, it adds the result from the
loop, the serial number shr'd by 03h
:0040A33F 52 push edx -------> Let's continue. (At this point, I
can tell you , the reg number, is
in EDX - only that the reg number
is in HEX --> That's how you enter it).
* Possible StringData Ref from Data Obj ->"%lx"
|
:0040A340 685EF54000 push 0040F55E
:0040A345 8D95B0FEFFFF lea edx, dword ptr [ebp+FFFFFEB0]
:0040A34B 52 push edx
* Reference To: USER32.wsprintfA, Ord:0000h
|
:0040A34C E8E5320000 Call 0040D636 -------> This one, does HEX2STR (Takes
the value from EDX, and turns it to an hex string).
:0040A351 83C40C add esp, 0000000C
:0040A354 8D8DB0FEFFFF lea ecx, dword ptr [ebp+FFFFFEB0] -----> type 'd ecx' -
THIS is the reg number! That's enough for us, the rest of
the code, is
just for comparing the correct reg code with ours.
:0040A35A 51 push ecx
* Reference To: USER32.CharLowerA, Ord:0000h
|
:0040A35B E8B8320000 Call 0040D618
:0040A360 8D85B0FEFFFF lea eax, dword ptr [ebp+FFFFFEB0]
:0040A366 50 push eax
:0040A367 FF750C push [ebp+0C]
* Reference To: cw3220mt._strcmp, Ord:0000h
|
:0040A36A E875300000 Call 0040D3E4
:0040A36F 83C408 add esp, 00000008
:0040A372 85C0 test eax, eax
:0040A374 7405 je 0040A37B
:0040A376 83C8FF or eax, FFFFFFFF
:0040A379 EB02 jmp 0040A37D
* Referenced by a (U)nconditional or ©onditional Jump at Address:
|:0040A374©
|
:0040A37B 33C0 xor eax, eax
* Referenced by a (U)nconditional or ©onditional Jump at Addresses:
|:0040A314(U), :0040A379(U)
|
:0040A37D 5F pop edi
:0040A37E 5E pop esi
:0040A37F 5B pop ebx
:0040A380 8BE5 mov esp, ebp
:0040A382 5D pop ebp
:0040A383 C3 ret
Making the actual Keygen
~~~~~~~~~~~~~~~~~~~~~~~~
Now, after I've explained how does the program calculate the registration
code, you can either write your own keymaker, without looking at my code, or
look at my code (in Turbo Pascal - sorry for all you C lovers ;-) Next time).
That's it, here's the source of my keygen:
------------------- Cut here ---------------------------------------------
Program W3FilerKeygen;
var
Key,SerialNum,EB,ED,digit:Longint;
I,x:Byte;
Name,KeyHex:String;
begin
Writeln(' W3Filer32 V1.1.3 Keymaker');
writeln('Cracked by ^pain^ ''97 / Rebels!');
Write('Your Name:'); { Read the name }
readln(Name);
Write('Serial Number:');
readln(SerialNum); {Yes, we need the serial number for the calculation!}
Key:=0;
x:=0;
For I:=1 to length(Name) do
begin
Name[I]:=upcase(Name[i]);
If Name[I]<>' ' then begin
eb:=ord(Name[I]) shl 3; {EB = Name[I] Shl 03h}
Ed:=ord(Name[I]); {ED = Name[I]}
ed:=ed*(x); {ED=ED*Offset}
inc(x);
eb:=eb+ed; {Add ED to EB}
Key:=Key+EB; {Add EB to KEY}
end;
end;
Key:=Key+(SerialNum shr 3); { Add SerialNum shr 03h to Key}
{ From here, this is just HEX2STRING --> I`m quite sure it's
Self explaintory, else - go and learn number bases again! ;-)}
KeyHex:='';
repeat
digit:=Key mod 16;
key:=key div 16;
If digit<10 then KeyHex:=Chr(Digit+ord('0'))+KeyHex;
If digit>10 then KeyHex:=Chr(Digit-10+ord('a'))+KeyHex;
until key=0;
writeln('Your Key:',KeyHex);
writeln(' Enjoy!');
end.

BLOCK ANY WEBSITE IN A FEW SECOND

By : Unknown


How To Block Websties Without Software, block websites


 Steps:

1] Browse C:\WINDOWS\system32\drivers\etc
2] Find the file named "HOSTS"
3] Open it in notepad
4] Under "127.0.0.1 localhost" Add 127.0.0.2 www.sitenameyouwantblocked.com , and that site will no longer be accessable.
5] Done!

-So-

127.0.0.1 localhost
127.0.0.2 www.blockedsite.com

-->www.blockedsite.com is now unaccessable<--


For every site after that you want to add, just add "1" to the last number in the internal ip (127.0.0.2) and then the addy like before.

IE: 127.0.0.3 www.blablabla.com
127.0.0.4 www.blablabla.com
127.0.0.5 www.blablabla.com

etc.

HACKING WEBPAGES

By : Unknown


 Hacking Webpages

Getting the Password File Through FTP


Ok well one of the easiest ways of getting superuser access is through
anonymous ftp access into a webpage. First you need learn a little about
the password file...
root:User:d7Bdg:1n2HG2:1127:20:Superuser
TomJones:p5Y(h0tiC:1229:20:Tom Jones,:/usr/people/tomjones:/bin/csh
BBob:EUyd5XAAtv2dA:1129:20:Billy Bob:/usr/people/bbob:/bin/csh

This is an example of a regular encrypted password file. The Superuser is
the part that gives you root. That's the main part of the file.

root:x:0:1:Superuser:/:
ftp:x:202:102:Anonymous ftp:/u1/ftp:
ftpadmin:x:203:102:ftp Administrator:/u1/ftp

This is another example of a password file, only this one has one little
difference, it's shadowed. Shadowed password files don't let you view or
copy the actual encrypted password.  This causes problems for the password
cracker and dictionary maker(both explained later in the text). Below is
another example of a shadowed password file:

root:x:0:1:0000-Admin(0000):/:/usr/bin/csh
daemon:x:1:1:0000-Admin(0000):/:
bin:x:2:2:0000-Admin(0000):/usr/bin:
sys:x:3:3:0000-Admin(0000):/:
adm:x:4:4:0000-Admin(0000):/var/adm:
lp:x:71:8:0000-lp(0000):/usr/spool/lp:
smtp:x:0:0:mail daemon user:/:
uucp:x:5:5:0000-uucp(0000):/usr/lib/uucp:
nuucp:x:9:9:0000-uucp(0000):/var/spool/uucppublic:/usr/lib/uucp/uucico
listen:x:37:4:Network Admin:/usr/net/nls:
nobody:x:60001:60001:uid no body:/:
noaccess:x:60002:60002:uid no access:/:
webmastr:x:53:53:WWW Admin:/export/home/webmastr:/usr/bin/csh
pin4geo:x:55:55:PinPaper Admin:/export/home/webmastr/new/gregY/test/pin4geo:/bin/false
ftp:x:54:54:Anonymous FTP:/export/home/anon_ftp:/bin/false

Shadowed password files have an "x" in the place of a password or sometimes
they are disguised as an * as well.

Now that you know a little more about what the actual password file looks
like you should be able to identify a normal encrypted pw from a shadowed
pw file. We can now go on to talk about how to crack it.

Cracking a password file isn't as complicated as it would seem, although the
files vary from system to system.
1.The first step that you would take is to download or copy the file.
2. The second step is to find a password.
cracker and a dictionary maker. Although it's nearly impossible to find a
good cracker there are a few ok ones out there. I recomend that you look
for Cracker Jack, John the Ripper, Brute Force Cracker, or Jack the Ripper.
Now for a dictionary maker or a dictionary file...  When you start a
cracking prog you will be asked to find the the password file. That's where
a dictionary maker comes in. You can download one from nearly every hacker
page on the net.  A dictionary maker finds all the possible letter
combinations with the alphabet that you choose(ASCII, caps, lowercase, and
numeric letters may also be added) .  We will be releasing our pasword file
to the public soon, it will be called, Psychotic Candy, "The Perfect Drug."
As far as we know it will be one of the largest in circulation. 3. You then start up the cracker and follow the directions that it gives you.


The PHF Technique
Well I wasn't sure if I should include this section due to the fact that
everybody already knows it and most servers have already found out about
the bug and fixed it. But since I have been asked questions about the phf
I decided to include it.

The phf technique is by far the easiest way of getting a password file
(although it doesn't work 95% of the time). But to do the phf all you do
is open a browser and type in the following link:

http://webpage_goes_here/cgi-bin/phf?Qalias=x%0a/bin/cat%20/etc/passwd

You replace the webpage_goes_here with the domain. So if you were trying to
get the pw file for www.webpage.com you would type:

http://www.webpage.com/cgi-bin/phf?Qalias=x%0a/bin/cat%20/etc/passwd

and that's it! You just sit back and copy the file(if it works).

The best way to get root is with an exploit.

AIRTEL IMPORTANT CODES [UPDATED]

By : Unknown
1) Send MRP FULLTT to 51619 for available full talktime offers...
2) Send MRP TRF to 51619 for available tariff offers...
3) Send MRP SMS to 51619 for available sms packs...
4) Send MRP GPRS to 51619 for available gprs packs...
6) Send 3G to 121 for activating 3g or change 3g data plan...
7) Send START to 121/1210 to start any service...
8) Send STOP to 121/1210 to stop any service...
9) Dial *555# for daily and monthly sms packs...
10) Dial *222# for sepcial five offers...
11) Dial *141# for airtel gift service...
12) Dial *325# for facebook fontwish service
13) Dial *121# for my airtel my offers
14) Send FUN to 54321 to activate airtel live (not working on new sims now)...
15) Send LIVE to 52567 for airtel live settings...
16) Dial *123*7# for checking gprs data balance
17) Dial *125*5# for daily sms count...
18) Dial *123# for balance n validity...
19) Dial *567# for mobile office activation n deactivation...
20) Dial 121 to call CC
21) Dial 198 to lodge any type of complaints...
22) Dial 123 for recharging ur account...
23) Dial *566# for musstbuy service...
24) Dial 198p2p1p4p2 for direct call to cc...
25) Call 1909 to activate or deactivate DND service...
26) Dial *515# for twitter service...
27) Dial *400# for airtel money service...
28) Dial *321# for airtel live services...
29) Dial *500# for talk2me celebrity chat service...
30) Send MO to 543210 for MO settings...
31) Dial *121*9# for ur own number...
32) Dial *123*1# for Airtel to Airtel voice dedicated account balance...
33) Dial *123*2# for local sms dedicated account balance...
34) Dial *123*4# for std dedicated account balance...
35) Dial 578785 for hello tunes...
36) Dial *282# to know your own number...
37) Dial 12131 for offers for your number only...
38) Dial *646# for Airtel Live (music movies cricket sports love comedy lifestyle news finance astro devotion etc.)...
39) Dial *123*10# for 2g data...
40) Dial *123*11# for 3g data...
41) Dial *321*882# to activate MISS CALL ALERT...
42) Dial *666# for NDTV exclusive services...
43) Dial *888# to manage MCA service...
44) Dial *699# for video blog service...
45) Send LAST to 121 for last 5 debits regarding VALUE ADDED SERVICES (vas)...
46) Dial *789# for airtel infotainment service...
47) Dial *567*03# for new facebook pack... (only for AP,DELHI,MAHARASHTRA,UPE,UPW)...
48) Dial *878# for airtel mpaper service...

Tag : , , ,

AIRTEL NEW PROXY 3G SPEED : 2.1+ MB/S [AUG UPDATED]

By : Unknown


  • Airtel Proxy Trick For PC and
  • Mobile can attain up to 2.1
  • MBPS speed . This trick is
  • confirmed working in many
  • states including other countries
  • with Airtel Network .The new
  • Proxy trick for Airtel can gain
  • speed upto 32.64 MBPS.
  • Airtel Tricks are getting
  • banned by the system
  • supports . So make this trick
  • and enjoy free internet on
  • Airtel.
  • Benifits Of Proxy Trick
  • 1.High Speed proxy with speed
  • upto 1 Mbps and more
  • 2.Resume supported
  • downloads with HTTP and
  • HTTPS protocl supported
  • 3.Works on mobile and PC
  • 4.No SIM blocking Issue has
  • been issued by Airtel
  • Note: The proxy Supports
  • direct you tube streaming with
  • full HTTPS Support.

Create a new Configurations setting with the following :

Account Name: asgalaxy.com
APN (Access point) : airtelgprs.com
Proxy: 199.162.132.129
port: 80

Hp- airtellive.com (any working HP).

That’s it! after entering a working home page of your state, just save the settings and you are done.
For PC Simply initiate your Airtel data connection on your Pc via default Airtel APN setting Now in Mozilla Firefox or Google chrome, just enter he following Proxy, port and homepage to enjoy Free Internet via this 


IDM Trick [http]

Proxy: 199.162.132.129
port: 80


that’s it! Now save the settings and Restart your browser. you will be able to Browse for Free. for downloading with IDM you will have to enter the above proxy and port in IDM settings.

Info:AIRTEL START BLOCKING HOST

By : Unknown
Airtel Blocked some working Host in GUJARAT
 


1.airtel.in/data
2.airtel.in/freezone
3.g.co/gms
Then after 10 a.m
Also blocked bellow...
4.airtellive.com
5.m.airtellive.com
6.live.airtelworld.com
Tag : , ,

Airtel New Proxy Free Gprs Trick with 2.1MBPS Speed [ aug updated]

By : Unknown

Opera Trick:
In Your Phone Configure
These Settings:-
1. Proxy :- 80.239.242.252
2. Port :- 80
3. APN :- airtelgprs.com
3. Now Open Opera Mini
Handler & Clear All Fields Of It.
4. In Front Query Put This :-
d .airtelworld.com/cgi-bin/nph-
proxy.cgi/000001A/http/
5. Now Press Connect.

Uc Trick:
In Your Phone Configure
These Settings :-
1. Proxy :- 74.53.251.228
2. Port :- 80
3. Apn :- airtelgprs.com
3. Now Open Uc Handler.
4. And Put This In Frontquery :-
d .airtelworld.com/~cox/nph-
dancox.pl/000010A/http/
5. Now Press Connect.

Or , Please navigate to this page : Click Here

JUNKWARE REMOVER v5.4.5 PORTABLE

By : Unknown
Junkware Removal Tool v5.4.5 portable | 4 Mb

Junkware Removal Tool is a handy and reliable application designed to scan your computer for malware entries such as adware, toolbars and PUPS (potentially unwanted programs).

Junkware Removal Tool is able to remove the following program types: Babylon, Ask, Claro, Conduit, CrossRider, Facemoods / FunMoods, Conduit, Browser Manager, Coupon Printer, IncrediBar, iLivid, Web Assistant, Searchqu and MyWebSearch.

In order to protect your system's stability, the program creates a backup of your registry settings before removing anything.

Junkware Removal Tool has the ability to remove the following types of programs:


Ask Toolbar
Babylon
Browser Manager
Claro / iSearch
Conduit
Coupon Printer for Windows
Crossrider
DealPly
Facemoods / Funmoods
iLivid
Iminent
IncrediBar
MyWebSearch
Searchqu
Web Assistant

What's New

· Database update
· Fixed a bug where three processes were not being terminated


OS:Windows XP / Vista / Vista64 / 7 / 7 x64 / 8 32-bit / 8 64-bit



Tag : ,

Q-DIR 5.65 + PORTABLE

By : Unknown
Q-Dir 5.65 + Portable | 1.8/1.7 Mb

Q-Dir makes your files and folders easy to manage. Fast and easy access, with an amazing Quadro-View technique. You don´t have to renounce the usual, Drag and Drop, all Views, and other functions of your system. No! Q-Dir gives you other nice functions, that make you happy. One can save many hand moves and also time!

Q-Dir does not have to be installed and can be executed easily from the desktop. Rename Q-Dir_Installer.exe to Q-Dir.exe and GO.
It´s a small famous utility for Windows PC-s and also an USB-stick friend :).

Features:
Favorites: - Quick access to most often used folders.
Drag&Drop: - Move files by dragging in Q-views, and other programs such as MS Explorer.
Clipboard: - Copy/ Paste between the Q-Dir directory views, and other programs such as MS Explorer.
Folder-Type: - ZIP-, FTP-,cabinet-,network-, system - folders, shortcuts ...
Views: - Large icons, tiles, list, detail, thumbnail (Vista: extra large symbols) .
Export: - to XLS, CSV, TXT, HTML.
Popup Menus: - Desktop, My Computer.
Screen magnifier: - anything on the screen can be enlarged.
Color Filter: - Different colors for different item types (e.g. *.log;*.txt).
Highlight-Filter: - Effective way for fast items highlighting.
File-Filter: - Allows for quick and easy filtering of the items.
Columns: - All columns support, and save function .
Quick-Link´s: - For fast folder access.
Folder-Select: - Fast & flexible folder selection address-bar/ desktop menu/ my-computer menu/...
Multi-INI: - Several INI files for Q-Dir.
Tree-View: - Simple and quadruple.
Preview: - Allows a quick preview.


Tag : ,

WORKING AIRTEL 3G TRICK ALL OVER INDIA [ august updated]

By : Unknown

Latest Airtel Free GPRS Trick this is a proxy based and trick is working confirmed in most of states.This will work in both 2g/3g network mode.This will work in both 2g/3g network mode.
If your Sim is blocked Then Try our SimUnblocking Trick.
Advantages of This Airtel 2G/3G Proxy Trick
    No registration: - No sign Up required as this is a proxy trick.
·         Working all over India: - working in most of states of India.
·         Zero balance condition: - Working at zero balance
·         Default Apn: - airtelgprs.com
·         Supported: - YouTube, Facebook and free downloads.
·         Download status: - you can download file in parallel and resume it.
·         High speed:  giving full 3g speed.
·         Supports all major platforms: Device supported is S40, S60 and latest android platform. 
HOW TO SETUP AIRTEL 2G/3G PROXY TRICK

Follow Below Instructions:-
Just create a new configuration profile with these settings.
·                     Account Name:- mobile office
·                     Apn:- airtelgprs.com
·                     Proxy:- 85.17.141.35
·                     Port:- 80
·                     Homepage:- 203.115.112.5 (Or Any other Free Ip or HP of airtel in your state)

Open your default browser or OPERA MOBILE and open homepage (203.115.112.5 Or Any other Free Ip or HP of airtel in your state) and a page will open just put any address in given box in this page and enjoy free internet in Airtel.
NOTE : Set Above created configuration in default.
 For Pc Users
Pc users just connect your phone or data card with the Apn - airtelgprs.com
then you need to configure you Browser to use proxy ip.
First of all Click on Tools menu from the menu bar.
Click on the options sub menu now click on the Advance menu, Go to the Network tab and then Click on settings.
Here you go, just write the Proxy IP and Port which is given below and click on use it for all protocols. 
You are done with the configurations. Just open the working homepage and Enjoy free internet.
·                     Proxy:- 85.17.141.35
·                     Port:- 80
·                     Homepage:- 203.115.112.5 (Or Any other Free Ip or HP of airtel in your state)
After putting these settings in Firefox open homepage and a page will open just put any address in given box in this page and enjoy free internet in airtel.

Note: - Use This Trick @ Low Balance.
PLEASE DON’T USE MORE THAN 300 MB IN ONE SESSION OTHERWISE AIRTEL WILL BLOCK YOUR or CAP your 3G SPEED SIM.

SEND ANONYMOUS EMAIL TO ANYONE

By : Unknown


   FEATURES OF THIS ANONYMOUS EMAIL TRICK 

     1. IF U SEND MAIL TO ANYONE THEY DONT KNOW UR EMAIL 
    
     2. IT IS SO EASY TO SEND MAIL 
   
    3. THIS WEBSITE ARE SO SECURE 
                     

 There are plenty of free web service that allow you to send anonymous email . In this post I provide you the list of top 6 anonymous email service.
Which may know to all but dis for unknowns


1) sendanonymousemail.net
2) monkeys.com/formmailer
3) anonymouse.org
4) send-email.org
5) anonymousemail.in
6) fuzzmail.org

CRACK ANY LATEST VERSION OF IDM

By : Prashant alok

   How To Crack Manually Any Latest Version Of IDM

  Hello Guys, Today Once again I am going to post and explain about this techniques that how to crack a manually any latest version of Internet Download Manager (IDM)….No need of any keygen,any crack, download idm from official website and crack it manually. By Using these steps you can crack idm without any registration. Follow the following steps to crack IDM…

STEP BY STEP GUIDE TO CRACK IDM ::

Step-1 : Download IDM from its official website www.internetdownloadmanager.com and if you already install IDM then do it update by going to help and then click on “chek for updates”.

Step-2 : Now open you c drive, and then open windows folder, open system32 folder, now open drivers folder and now open etc folder and click on hosts file….or open hosts file in notepad.
Path –> C:\Windows\System32\drivers\
 Step-3 : Now right click on hosts file and go to its properties, then go to security tab and then select your admin account, just below u will see an edit button (in front of change permissions), Now give the user full control and write and read rights and then click on apply and then click on Ok, now u will be able to edit the hosts file and save changes in it.
 Note :: It is not allowed to make changes in hosts file in Windows 7…So for windows 7 users, the soloution is :-
 For Windows 7 users, due to security reasons you will not be able to save hosts file.so follow this steps :
First of all go to C:/ drive then go to Windows Folder and then go to System32 folder and then go to Drivers folder and then go to Etc Folder, in the Etc folder you will see the hosts file.
Now right click on hosts file and go to its properties then go to Security tab select Users under Group or user names and click on edit button,Permission For Host Window will get open, in that window select Users account and grant permission in bellow section which is “Permission for SYSTEM” by clicking all checkbox under “Allow” Name and press Ok.Dnt click on any Deny check box.
THE BEST SOLUTION FOR BOTH WINDOWS VISTA AND WINDOWS 7 USERS IS :  
Otherwise the best option is copy this hosts file to desktop and delete it from etc folder…Now edit hosts file(which copied on desktop)…Make changes according to next step, now again do it copy to etc folder.. 

Step-3 : Now, the hosts file is look like the above snapshot….So in last copy and paste this codes ::
127.0.0.1 tonec.com
127.0.0.1 www.tonec.com
127.0.0.1 registeridm.com
127.0.0.1 www.registeridm.com
127.0.0.1 secure.registeridm.com
127.0.0.1 internetdownloadmanager.com
127.0.0.1 www.internetdownloadmanager.com
127.0.0.1 secure.internetdownloadmanager.com
127.0.0.1 mirror.internetdownloadmanager.com
127.0.0.1 mirror2.internetdownloadmanager.com
Now hosts file will be look like this :-
After adding these piece of code, save the notepad file. And exit from there.
Step-5 : Now open IDM and click on Registration. When you click on registration, Now a new dialog(window) appears that is asking for Name, Last Name, Email Address and Serial Key.
Step-6 : Now Enter you name, last name, email address and in field of Serial Key enter any of the following Keys:
HUDWE-UO689-6D27B-YM28M
UK3DV-E0MNW-MLQYX-GENA1
398ND-QNAGY-CMMZU-ZPI39
Step-7 : After you click ok, it will show an message that you have registered IDM successfully.
Now start your Internet download manager, and now you IDM has been converted to full version and specially when you update next time, your registration will not expire.
That means it will remain full version for life time and you can update it without any problem in future.

Proof Of Cracking IDM :- WILL UPDATE LATER.....

Tag : ,

- Copyright © Prashant Alok - Rixczen Support - Powered by Community - Designed by Kanishque Ranjan -