|
-
Oct 5th, 2012, 06:22 PM
#1
Thread Starter
Member
Pulling open a profgram and putting in settings.
I am making a Keylogger for my sons computer as a project for my college course in programming. He said code one program of use so here it is. I have all the code and Stub set up but I need to make the builder be able to see those settings and apply them.
E.g. In the builder I have Process Persistence so it can not be killed on his computer with Task Manager. There is a checkbox in the builder and I need a If statement inside the stub to tell if the ProcessPersistence.Checked = True or False so it can react in the Stub. I have been all over Google looking for code w/ no luck. Please help!
I am looking to make private subs and a couple of Booleans that need to determine settings on another program.
I am using this to pull data:
FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)
FileGet(1, ProcessPersistence)
FileGet(1, NameOfSub)
FileGet(1, NameOfSub)
FileGet(1, NameOfSub)
FileGet(1, NameOfSub)
FileClose(1)
And using this to save data: But it is not working for some reason
FileOpen(1, Application.StartupPath & "\WhatINeedToSaveInto.exe", OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
NameOfProgramToMake = Space(LOF(1))
FileGet(1, NameOfProgramToMake)
FileClose(1)
FileOpen(1, saveit.FileName, OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
FilePut(1, NameOfSub, NameOfSub, NameOfSub, NameOfSub)
FileClose(1)
PLEASE EXPLAIN ALL CODE! I am learning and copy-pasting will not help me learn a thing!
Last edited by DesignLife; Oct 5th, 2012 at 06:24 PM.
Reason: Update
-
Oct 6th, 2012, 03:21 PM
#2
Re: Pulling open a profgram and putting in settings.
I'm afraid you'll not find anyone here willing to help with the programming of an application which is at best ethically questionable and potentially malicious. Even though I am sure you have no such intentions yourself you will understand that we prefer not to make any thing public which could help those who do.
As the 6-dimensional mathematics professor said to the brain surgeon, "It ain't Rocket Science!"
Reviews: "dunfiddlin likes his DataTables" - jmcilhinney
Please be aware that whilst I will read private messages (one day!) I am unlikely to reply to anything that does not contain offers of cash, fame or marriage!
-
Oct 6th, 2012, 09:17 PM
#3
Re: Pulling open a profgram and putting in settings.
 Originally Posted by DesignLife
PLEASE EXPLAIN ALL CODE! I am learning and copy-pasting will not help me learn a thing!
This attitude is quite admirable, its just too bad the subject matter in this case is ethically ambiguous.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|