hacking founts

Scene releases, code, news, information, expressions, style, anarchy, cyberpunk, communities and much more. All these things I will provide you in a few dandy links. Don`t miss them!

Hacker's Hideaway
Flyninja Dot Net
Null Area
proge.net
DarkTrix Arena
0x3a
thoughtcrime.org (Damn! I love this site!)

the warriors


I caught this links via progenic. Keep it up guys!

Comments

regwalker.py

regwalker is a python script for Windows to walk the registry on a specified key und look for a subkey that matches a string. If a subkey is found return the value of the defined entry name.

I wrote it because Inno Setup allows multiple applications to be installed to the same directory. When that happens, the first application's uninstaller is named unins000.exe, the second application's uninstaller is named unins001.exe, and so on. If you want to use a script to uninstall a application you can use regwalker to fetch the current UninstallString in the registry.

Usage:

regwalker.py <key> <subkey> <name>


Example:

regwalker.py HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\
Windows\CurrentVersion\Uninstall adobe UninstallString


This will return the UninstallStrings of every installed Adobe Product.

Requirements:
  • Windows Platform (tested on Windows XP SP3)
  • python (tested on python 2.6.1)
Building a singe executable:

1. Install py2exe

2. Create a setup.py:

from distutils.core import setup
import py2exe
setup(console=["regwalker.py"],zipfile=None)


3. Build your executeable:

python setup.py py2exe --bundle 1


For more information on building an executable read the py2exe Tutorial.

Download:
regwalker.py

Comments