-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Are you still active in this community? #9
Comments
Haven't touched this (or eve) in a long time. I doubt I'd be of much help but sure. |
@tostercx did you ever get the probe scanner window automated? In particular the probe cursor so it can be placed on to sigs for scanning. |
Yeah, that was probably the only script that worked somewhat well. It just scanned all anomalies automatically once the probes were released IIRC. The project was primarily a GUI network packet inspector/editor/injector. The scripts are mostly an afterthought testing out what can be done with it. There's probably an easier way to automate scanning with the client than composing packets if that's what you're after ^^; |
Yeah ideally I don't use the packet approach hah. Could you tell me a little more about the process to hook the python domain and, I assume what you're doing here, is inject some custom functions that you can call from outside EVE. |
So... I am using eve's python, but it's not the same instance as the game is running in. The main application hooks, captures and decrypts raw packets from a running eve process. It then loads eve's python in my app to parse the packet and convert it to a dumb object that can be represented as JSON for human viewing/editing. At the spot you mentioned I'm creating a new packet in the human viewable format. I know the architecture is confusing but the only interaction I have with the game client is reading or writing packets. |
Ahhh. I see. That's very interesting! I'm half tempted to maybe get it working again just coz that's a kind of cool method you've developed. But as you say I wouldn't plan to expanding it if I can avoid it. |
Well my app uses eve's libraries to make the packet and convert it to a binary buffer from the outside (blue.marshal.Load/Save). It then passes it to eve's process to send it. I'm only hooking CryptEncrypt and WSA Send and friends from the Win32 API. As for getting it working - I'm not sure if the traffic capture part still works. May need some debugging. If you want to run python directly in the game client, I think you can get the address of |
I imagine you've since moved on from this particular project, but I'd love to pick your brain about it if you're open to it?
The text was updated successfully, but these errors were encountered: