To the people who want the source of the dll:
Okay so basically you have to use RPM to search for Py_InitModule4 calls.
1st argument is our module name.
2nd argument is a pointer to the memory region that holds the PyMethodDef data, cast it or iterate the memory region it has our desired pointer to the PyCFunction.
Here is a little help:
Code:
68????????6A006A0068????????68
Code:
PyObject* Py_InitModule4(char *name, PyMethodDef *methods, char *doc, PyObject *self, int apiver)
[Only registered and activated users can see links. Click Here To Register...]
Good luck and have fun!