Sideshow Bob (from The Simpsons) drawn using HTML and CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
HeapWalker - Walking Windows 7 process heaps using pydbg | |
Author : Debasish Mandal | |
Blog :http://www.debasish.in/ | |
Twitter : https://twitter.com/debasishm89 | |
Description : This python script is simplest implementation of Windows HeapWalk() API. | |
It uses pydbg and allows user to Walk Through debugee process's heaps on the fly. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[+] Attached | |
[+] Address of PEB : 0x7efde000 | |
[+] Total Number of Process Heaps : 3 | |
[+] Walking 0x3d0000 | |
[+] Heap type : Low Fragmentation Heap | |
[+] Heap has only 1 segment | |
[+] Parsing Segment 0x3d0000 of Heap : 0x3d0000 | |
Heap 0x3d0000 Segment : 0x3d0000 Block : 0x3d0000 Size : 0x588 User Pointer : 0x3d0008 ( Busy ) | |
Heap 0x3d0000 Segment : 0x3d0000 Block : 0x3d0588 Size : 0x240 User Pointer : 0x3d0590 ( Busy ) | |
Heap 0x3d0000 Segment : 0x3d0000 Block : 0x3d07c8 Size : 0x20 User Pointer : 0x3d07d0 ( Busy ) |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
/* | |
Copyright The Closure Library Authors. | |
SPDX-License-Identifier: Apache-2.0 | |
*/ | |
var f, ba = function(a) { | |
switch (aa(a)) { | |
case 4: | |
case 0: |
OlderNewer