Update and clean the README one more time

This commit is contained in:
hakril
2016-01-08 00:33:15 +01:00
parent 21edf14888
commit 5c0ed1edfe
2 changed files with 9 additions and 9 deletions
+6 -5
View File
@@ -25,8 +25,8 @@ PythonForWindows offers objects around processes and allows you to:
- Explore the PEB (Process Environment Block)
- Execute `native` and `Python` code in the context of a process.
I try by best to make those features available for every cross-bitness processes (`32 <-> 64` in both ways).
This involve relying on non-documented `Windows` function/behaviour and also injecting code in the 64bits world of a `Syswow64` process.
I try my best to make those features available for every cross-bitness processes (`32 <-> 64` in both ways).
This involves relying on non-documented `Windows` functions/behaviours and also injecting code in the 64bits world of a `Syswow64` process.
All those operations are also available for the `current_process`.
You can also make some operation on threads (suspend/resume/wait/get(or set) context/ kill)
@@ -35,7 +35,7 @@ You can also make some operation on threads (suspend/resume/wait/get(or set) con
### IAT Hook
This codebase is born from my need to have IAT hooks implemented in Python.
So the features is present (see online documentation)
So the features is present (See [online documentation][ONLINE_IATHOOK] about IAT hooks).
### Winproxy
@@ -53,7 +53,7 @@ a simple x86/x64 assembler.
## Other stuff
Some code are just exploration and need improvement like:
Some code are just explorations and need improvements like:
- Wintrust
- WMI
@@ -64,4 +64,5 @@ Some code are just exploration and need improvement like:
[LKD_GITHUB]: https://github.com/sogeti-esec-lab/LKD/
[SAMPLE_DIR]: https://github.com/hakril/PythonForWindows/tree/master/samples
[ONLINE_DOC]: http://hakril.github.io/PythonForWindows/
[ONLINE_SAMPLE]: http://hakril.github.io/PythonForWindows/sample.html
[ONLINE_SAMPLE]: http://hakril.github.io/PythonForWindows/sample.html
[ONLINE_IATHOOK]: http://hakril.github.io/PythonForWindows/iat_hook.html
+3 -4
View File
@@ -1,9 +1,8 @@
== ctypes_generation ==
I promise i will make a real README at the root of the project.
I don't have the need (nor want to code) a full C parser but i need to parse some windows definition
to generate some python function/struct/flags.
So, there are 3 dumb parser used to generate:
I don't have the need for (nor want to code) a full C parser but I need to parse some
windows definitions to generate some python functions/structs/flags.
So, there are 3 dumb parsers used to generate:
- function prototype
- ctypes struct definition
- flags (int with name)