La Billetterie

Un peu de tout saupoudré délicatement

Affichage des articles publiés dans avril, 2009

SSL_CTX_set_session_cache_mode, SSL_CTX_get_session_cache_mode – enable/disable session caching http://www.openssl.org/docs/ssl/SSL_CTX_set_session_cache_mode.html SSL_CTX_sess_set_cache_size, SSL_CTX_sess_get_cache_size – manipulate session cache size http://www.openssl.org/docs/ssl/SSL_CTX_sess_set_cache_size.html

La solution est ici : Context Operator (C/C++ Language Expressions) When the expression evaluator encounters a symbol in an expression, it searches for the symbol in […]. With the context operator, you specify the starting point of the search and bypass the current location. You cannot specify a class, but you can specify a member […]

La liste des principaux intrinsics est : InterlockedIncrement() InterlockedDecrement() InterlockedAdd Function InterlockedExchange() InterlockedCompareExchange() InterlockedCompareExchangePointer InterlockedExchangePointer() La version simple : – chaque thread incremente et décrémente librement. On commence à zéro et on augmente. On ne peut pas resdescendre en-desous de zéro. Interlocked increment et Decrement renvoient la valeur après l’opération. – En Acquistion: on teste […]

List the loaded modules in your crash report. EnumerateLoadedModules( GetCurrentProcess(), // Process Handle // Callback function pointer (PENUMLOADED_MODULES_CALLBACK) EnumerateLoadedModulesProc, 0 ); // User context. BOOL CALLBACK EnumerateLoadedModulesProc( PSTR ModuleName, ULONG ModuleBase, ULONG ModuleSize, PVOID UserContext ) La documentation MSDN de EnumerateLoadedModules64 Function : Voir aussi les autres fonctions DbgHelp à coté.

http://msdn.microsoft.com/fr-fr/library/8dbf701c(VS.80).aspx http://support.microsoft.com/?scid=kb%3Ben-us%3B894573&x=9&y=6

http://www.developpez.net/forums/d360827/java/general-java/apis/io/bind-exception-address-already-in-use-connect/ http://technet.microsoft.com/fr-fr/library/bb878133%28en-us%29.aspx Ephemeral refers to the fact that client application ports are relatively short-lived (open at a maximum for the time that the application is running) in comparison to server application ports that are typically open for the entire time that the server computer is running. The maximum value of an ephemeral TCP or UDP […]

Documentation des options de gflags.exe Tous les flags de gflags Gflags : Enable page heap Full/Standard enable heap checking La structure des blocs mémoire quand quand le page heap est activé appverifier The Structure of a Page Heap Block Corrupted Infix Pattern For Freed Block Pour les systèmes 64 bits, cela semble ne pas bien […]

Detours peut être utiliser pour intercepter un appel de fonction donné. Cet exemple Low Fragmentation Heap and Function Interception montre comment utilisers cela. Bonus : Une description d’un code de Garbage Collector générationel pour C++

Visual C++ : Building on the Command Line Visual C++ cl.exe Compiler Options Visual C++ link.exe Linker Options Devenv Command Line Switches : Devenv allows you to set various options for the integrated development environment (IDE) as well as compile, build, and debug projects from the command line

L’article du rapport sur l’attaque : http://www.win.tue.nl/hashclash/rogue-ca/

http://zenit.senecac.on.ca/wiki/index.php/Mozilla_Source_and_Symbol_Server Setting up a Symbol Server Using SymStore If you are using SymSrv as your symbol server, any compression should be done using the compress.exe tool that is distributed with the Microsoft Windows Software Development Kit (SDK). Compressed files should have an underscore as the last character in their file extensions (for example, module1.pd_ or […]

Windows Performance Analysis Tools : Contient Xperf.exe , Xperfview.exe et Xbootmgr.exe Windows Performance Toolkit – Xperf : One of the most powerful features in Performance Analyzer is the ability to visualize stacks. It’s important to note that this requires no special instrumentation in the code – only that you have symbols for the binary components […]