![]() |
|
#556
|
|||
|
|||
|
CODE - The Hidden Language of Computer Hardware and Software
PHP Code:
PHP Code:
|
| The Following User Gave Reputation+1 to mm10121991 For This Useful Post: | ||
|
#557
|
|||
|
|||
|
Charles Petzold - Programming Windows 6th Edition
Code:
http://filepost.com/files/md44a6f9/Programming.Windows.6th.Edition.pdf |
|
#558
|
|||
|
|||
|
Quote:
Code:
http://www.4shared.com/get/noZJs9it/Sockets_Shellcode_Porting_And_.html |
|
#559
|
|||
|
|||
|
The C++ Standard Library, 2nd Edition
The Best-Selling C++ Resource. Now Updated for C++11
The C++ standard library provides a set of common classes and interfaces that greatly extend the core C++ language. The library, however, is not self-explanatory. To make full use of its components�Cand to benefit from their power�Cyou need a resource that does far more than list the classes and their functions. The C++ Standard Library: A Tutorial and Reference, Second Edition, describes this library as now incorporated into the new ANSI/ISO C++ language standard (C++11). The book provides comprehensive documentation of each library component, including an introduction to its purpose and design; clearly written explanations of complex concepts; the practical programming details needed for effective use; traps and pitfalls; the exact signature and definition of the most important classes and functions; and numerous examples of working code. The book focuses in particular on the Standard Template Library (STL), examining containers, iterators, function objects, and STL algorithms. The book covers all the new C++11 library components, including Concurrency Fractional arithmetic Clocks and timers Tuples New STL containers New STL algorithms New smart pointers New locale facets Random numbers and distributions Type traits and utilities Regular expressions The book also examines the new C++ programming style and its effect on the standard library, including lambdas, range-based for loops, move semantics, and variadic templates. An accompanying Web site, including source code, can be found at www.cppstdlib.com. Table of Contents Chapter 1. About This Book Chapter 2. Introduction to C++ and the Standard Library Chapter 4. General Concepts Chapter 5. Utilities Chapter 6. The Standard Template Library Chapter 7. STL Containers Chapter 8. STL Container Members in Detail Chapter 9. STL Iterators Chapter 10. STL Function Objects and Using Lambdas Chapter 11. STL Algorithms Chapter 12. Special Containers Chapter 13. Strings Chapter 14. Regular Expressions Chapter 15. Input/Output Using Stream Classes Chapter 16. Internationalization Chapter 17. Numerics Chapter 18. Concurrency Chapter 19. Allocators Code:
http://prefiles.com/jyuxloofr81a/Addison.Wesley.The.CPP.Standard.Library.2nd.Edition.Mar.2012.rar |
|
#560
|
||||
|
||||
|
a big book, but extremely complete!
C++ Primer, 5th Edition http://www.freebookdownloader.com/public/images/ebook/c-primer.jpg eBook Description Quote:
Code:
http://ul.to/su2y1bic http://www.4shared.com/rar/CBGmSojq/0321714113.html http://filecloud.io/6jrizcxs
__________________
Ŝħůb-Ňìĝùŕřaŧħ ₪) There are only 10 types of people in the world: Those who understand binary, and those who don't http://www.accessroot.com |
|
#561
|
|||
|
|||
|
The Rootkit Arsenal: Escape and Evasion in the Dark Corners of the System
This may have been posted before...
The Rootkit Arsenal: Escape and Evasion in the Dark Corners of the System Overview While forensic analysis has proven to be a valuable investigative tool in the field of computer security, utilizing anti-forensic technology makes it possible to maintain a covert operational foothold for extended periods, even in a high-security environment. Adopting an approach that favors full disclosure, the updated Second Edition of The Rootkit Arsenal presents the most accessible, timely, and complete coverage of forensic countermeasures. This book covers more topics, in greater depth, than any other currently available. In doing so the author forges through the murky back alleys of the Internet, shedding light on material that has traditionally been poorly documented, partially documented, or intentionally undocumented. The range of topics presented includes how to: • Evade post-mortem analysis • Frustrate attempts to reverse engineer your command & control modules • Defeat live incident response • Undermine the process of memory analysis • Modify subsystem internals to feed misinformation to the outside • Entrench your code in fortified regions of execution • Design and implement covert channels • Unearth new avenues of attack http://www.mediafire.com/?hd5nrw5hykt |
|
#562
|
|||
|
|||
|
Grey Hat Python
Python is fast becoming the programming language of choice for hackers, reverse engineers, and software testers because it's easy to write quickly, and it has the low-level support and libraries that make hackers happy. But until now, there has been no real manual on how to use Python for a variety of hacking tasks. You had to dig through forum posts and man pages, endlessly tweaking your own code to get everything working. Not anymore. Gray Hat Python explains the concepts behind hacking tools and techniques like debuggers, trojans, fuzzers, and emulators. But author Justin Seitz goes beyond theory, showing you how to harness existing Python-based security tools - and how to build your own when the pre-built ones won't cut it. You'll learn how to: Automate tedious reversing and security tasks Design and program your own debugger Learn how to fuzz Windows drivers and create powerful fuzzers from scratch Have fun with code and library injection, soft and hard hooking techniques, and other software trickery Sniff secure traffic out of an encrypted web browser session Use PyDBG, Immunity Debugger, Sulley, IDAPython, PyEMU, and more http://www.mediafire.com/view/?grjsbq1dddebpsq |
|
#563
|
|||
|
|||
|
Inside Windows Debugging
A Practical Guide to Debugging and Tracing Strategies in Windows Use Windows debuggers throughout the development cycle��and build better software Rethink your use of Windows debugging and tracing tools��and learn how to make them a key part of test-driven software development. Led by a member of the Windows Fundamentals Team at Microsoft, you��ll apply expert debugging and tracing techniques��and sharpen your C++ and C# code analysis skills��through practical examples and common scenarios. Learn why experienced developers use debuggers in every step of the development process, and not just when bugs appear. Discover how to: Go behind the scenes to examine how powerful Windows debuggers work Catch bugs early in the development cycle with static and runtime analysis tools Gain practical strategies to tackle the most common code defects Apply expert tricks to handle user-mode and kernel-mode debugging tasks Implement postmortem techniques such as JIT and dump debugging Debug the concurrency and security aspects of your software Use debuggers to analyze interactions between your code and the operating system Analyze software behavior with Xperf and the Event Tracing for Windows (ETW) framework A Bit of Background Chapter 1 Software Development in Windows Windows Evolution Windows Architecture Windows Developer Interface Microsoft Developer Tools Summary Debugging for Fun and Profit Chapter 2 Getting Started Introducing the Debugging Tools User-Mode Debugging Kernel-Mode Debugging Summary Chapter 3 How Windows Debuggers Work User-Mode Debugging Kernel-Mode Debugging Managed-Code Debugging Script Debugging Remote Debugging Summary Chapter 4 Postmortem Debugging Just-in-Time Debugging Dump Debugging Summary Chapter 5 Beyond the Basics Noninvasive Debugging Data Breakpoints Scripting the Debugger WOW64 Debugging Windows Debugging Hooks (GFLAGS) Summary Chapter 6 Code Analysis Tools Static Code Analysis Runtime Code Analysis Summary Chapter 7 Expert Debugging Tricks Essential Tricks More Useful Tricks Kernel-Mode Debugging Tricks Summary Chapter 8 Common Debugging Scenarios, Part 1 Debugging Access Violations Debugging Heap Corruptions Debugging Stack Corruptions Debugging Stack Overflows Debugging Handle Leaks Debugging User-Mode Memory Leaks Debugging Kernel-Mode Memory Leaks Summary Chapter 9 Common Debugging Scenarios, Part 2 Debugging Race Conditions Debugging Deadlocks Debugging Access-Check Problems Summary Chapter 10 Debugging System Internals The Windows Console Subsystem Anatomy of System Calls Summary Observing and Analyzing Software Behavior Chapter 11 Introducing Xperf Acquiring Xperf Your First Xperf Investigation Xperf��s Strengths and Limitations Summary Chapter 12 Inside ETW ETW Architecture Existing ETW Instrumentation in Windows Understanding ETW Stack-Walk Events Adding ETW Logging to Your Code Boot Tracing in ETW Summary Chapter 13 Common Tracing Scenarios Analyzing Blocked Time Analyzing Memory Usage Tracing as a Debugging Aid Summary Appendix WinDbg User-Mode Debugging Quick Start Starting a User-Mode Debugging Session Fixing the Symbols Path Fixing the Sources Path Displaying the Command Line of the Target Process Control Flow Commands Listing Loaded Modules and Their Version Resolving Function Addresses Setting Code (Software) Breakpoints Setting Data (Hardware) Breakpoints Switching Between Threads Displaying Call Stacks Displaying Function Parameters Displaying Local Variables Displaying Data Members of Native Types Navigating Between Call Frames Listing Function Disassembly Displaying and Modifying Memory and Register Values Ending a User-Mode Debugging Session Appendix WinDbg Kernel-Mode Debugging Quick Start Starting a Kernel-Mode Debugging Session Switching Between CPU Contexts Displaying Process Information Displaying Thread Information Switching Process and Thread Contexts Listing Loaded Modules and Their Version Setting Code (Software) Breakpoints Inside Kernel-Mode Code Setting Code (Software) Breakpoints Inside User-Mode Code Setting Data (Hardware) Breakpoints Ending a Kernel-Mode Debugging Session http://www.mediafire.com/?4gakhmolq66pe34 |
|
#564
|
|||
|
|||
|
Mark E. Russinovich, David A. Solomon and Alex Ionescu, "Windows Internals, Part 2"
English | ISBN: 0735665877 | 2012 | 674 pages | PDF, EPUB | 14 + 21 MB Delve inside Windows architecture and internals—and see how core components work behind the scenes. Led by three renowned internals experts, this classic guide is fully updated for Windows 7 and Windows Server 2008 R2—and now presents its coverage in two volumes. As always, you get critical insider perspectives on how Windows operates. And through hands-on experiments, you��ll experience its internal behavior firsthand—knowledge you can apply to improve application design, debugging, system performance, and support. In Part 2, you��ll examine: Core subsystems for I/O, storage, memory management, cache manager, and file systems Startup and shutdown processes Crash-dump analysis, including troubleshooting tools and techniques https://rapidshare.com/files/596428805/0735665877_Internals.pdf https://rapidshare.com/files/2666560101/0735665877_Internals.epub |
|
#565
|
||||
|
||||
|
finally! been waiting for that...
here`s part 1 again (pdf): http://www31.zippyshare.com/v/52397894/file.html |
|
#566
|
||||
|
||||
|
Quote:
The book is writen by my fellow countrymen. |
|
#567
|
|||
|
|||
|
Synopsis:
The only guide for software developers who must learn and implement cryptography safely and cost effectively. The book begins with a chapter that introduces the subject of cryptography to the reader. The second chapter discusses how to implement large integer arithmetic as required by RSA and ECC public key algorithms The subsequent chapters discuss the implementation of symmetric ciphers, one-way hashes, message authentication codes, combined authentication and encryption modes, public key cryptography and finally portable coding practices. Each chapter includes in-depth discussion on memory/size/speed performance trade-offs as well as what cryptographic problems are solved with the specific topics at hand. * The author is the developer of the industry standard cryptographic suite of tools called LibTom * A regular expert speaker at industry conferences and events on this development * The book has a companion Web site with over 300-pages of text on implementing multiple precision arithmetic http://www.mediafire.com/view/?42cr5299lbnorrl |
|
#568
|
||||
|
||||
|
Rich Feature Set of Wireshark Explored in Hakin9 OnDemand 07/2012
Download here: Quote:
|
| The Following User Gave Reputation+1 to kienmanowar For This Useful Post: | ||
|
#569
|
||||
|
||||
|
A Guide to Kernel Exploitation: Attacking the Core
Quote:
Quote:
|
| The Following User Gave Reputation+1 to kienmanowar For This Useful Post: | ||
chessgod101 (10-23-2012) | ||
|
#570
|
|||
|
|||
|
Metasploit Penetration Testing Cookbook
Quote:
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ebooks | conan981 | General Discussion | 0 | 07-07-2006 22:36 |
| some ebooks | fulone | General Discussion | 1 | 05-20-2004 21:22 |