-
Notifications
You must be signed in to change notification settings - Fork 9
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
Todo List #3
Comments
Notes: I'm going to have to either give them a text box to input how many lines to use (More customizable, but less intuitive) or make the code automatically count the lines. (Harder but requires no input from users) I would probably like the automatic path better, because an advanced user will know how to tweak it if they need to. But it's going to require generating the code for the ButtonPad/Conditional after the rest of the codes have been generated. At the moment, all the code generation just adds on to the next line of the previous part. So, I can't have ButtonPad tacked on to the bottom, but it also has to know how many lines are in the code, so it can't be at the top.... I don't think.... I'll think on it tonight. Maybe it is possible. |
NEVER MIND I'M A FREAKING BOSS! |
Hi, let me give you my feedback on TempAR just like you did on my pointer searcher.
I hope you also appreciate some of this feedback just in case you feel like challenging yourself or working harder on your pointer searcher to make it the best it can be. 👍 |
Brother, I've read it all and have some ideas in mind, and maybe a few points where I have little interest in pursuing. I haven't forgotten your app, either. I ran it the other day, but I had gotten busy doing some tutoring over the weekend, so I haven't gotten back with you yet. I'd also like to mention that I've just the other day managed to write a "Hello, World!" to console all by myself... Yes, I know, that's completely backwards and I should have learned that BEFORE I took on a pointer searcher project! XD So, many of these ideas are things I'd LIKE to add, but have no idea where to even start. But, this has become more of a pet project than anything else, and I'll probably be adding in features as I learn new things, and re-read the entire code as I learn how c# works so that I can REALLY get to know it... because the last time I touched this program's code, I didn't even know what a function was. That being said, a lot of what you've put here is probably a simple thing to add. Some of it I know I can already add, others I know should be easy to implement once I learn to do them. Only a few of them I think would require significant changes.
Whoops. I actually responded to this one later on. I actually had big endian and 64bit capability added in a while back in a test build... but I never pushed it because I was working on a different project at the time... mainly adding in the multiple dumps and color "Upgrading".
This is a big one, and the main reason why I stopped trying to get people on the vita scene from using my tool, to using yours. Adding in the color coding REALLY helped us find pointers quicker than before, but when yours works, it works instantly and gives only a couple valid pointers. This project is now more of a learning tool than an actual hacking tool, imo. I mean, plus after the drama on the scene, I really have no motivation to help them.
Unfortunately it's not just the initial scan that freezes. Pressing space to open a level deeper also lags a lot. Especially when you get into multiple levels deep or are using 2000+ offset ranges. I am aware that this is an option, but only vaguely understand how to use threads. Will definitely come back to this.
heh.... ya........... about that......... It's def a feature that's carried over from the original code. Some one should really get around to doing something about that..... XD
I could add a switch to ignore these on searching... That should make it quite a bit faster since it's skipping several addresses per dump... But I can't take it out completely I don't think. I would have to look at some of the codes I've made and see, but IIRC the addresses have to be 4byte aligned on Vita, but I'm pretty sure the Place the address points to can be 2byte aligned, so long as the offset ends it at a 4th byte. But, I will have to do some research there.
I'm pretty sure this will require some heavy tinkering. To be fair, the original creator MAINLY made this for NDS and PSP, and we only adopted it into the vita scene after we saw it mostly worked. The only reason it supports Vita now is because the scene needed something better, and it was what they were used to. My goal wasn't to add more consoles, and it's so clunky that I probably won't... But, I also have been using this as practice to learn coding (I literally started working on this knowing 0 c# )... so if I get a better understanding of it, this may be something I add. I did have some PoC tests early on where I had it working for The Switch's x64 Big Endian dumps, but I was told they don't actually make dumps on them.
I am working on a "grocery list" app right now as practice and it utilizes tables quite heavily. When I can figure out how to get that working good, that's something I can definitely add to this. But, at the moment it's beyond my scope. I have it working flawlessly on a console app, but moving it to GUI is proving troublesome. XD
I certainly do! Actually, after talking to you about yours, I ended up studying c# a bit and made my first Main(). So, I may go back to this a bit and edit it up now that I somewhat understand what |
Since my absence in the scene Princess-of-Sleeping has released a noASLR plugin, vitacheat has a new fix for an issue long plaguing the scene. Now that we have a name for the specific type of memory management, and a fix for it, we can pointer search more efficiently. The most important of things is that regardless of games using pointers, those pointers always, ALWAYS, have a hardcoded base address somewhere in the modules' segments. Either seg0 or seg1. NoASLR makes those segments static, meaning that pointer searchers can now properly locate pointers within them. Since Vitacheat allows for using a segment's starting address as an offset, via the b200 codes, it's important to find these rooted pointers. I have made a goal now to update TempAR with this new information. I want to make b200 codes the standard from now on, as they will work for users even if noASLR is not installed. With that in mind, I have added a couple new goals.
With those changes in the works, I have a feeling this will be my last update to the program. I've been out of the scene for a long time and will probably not be coming back. But, I would like to add a final contribution before leaving again. And since I randomly happened upon the noASLR plugin, this looks like a good time to drop an update and change the scene again. |
Things that I want to add but have not yet or don't know how.
Todo:
This would allow unlimited numbers of dumps/address pairs to be added.
The searcher runs on initial search, but also any time a pointer is opened to a new level.
This can result in HEAPS of lag if using a macro to mass-open pointers.
It doesn't crash to blue screen when using too much RAM afaik, but it might take all night.
In Progress:
Completed:
Anyone with C# experience is more than welcome to help out or give a pointer.
The text was updated successfully, but these errors were encountered: