Author |
Message |
Bakon
|
Posted: Wed Apr 13, 2005 6:14 pm Post subject: Creating Turing EXE files to be hidden in processes |
|
|
Alright, so Im wondering if there is a way of programming a program in turing that will lets say just continue to run, so just infinite loops of delays, but instead of having the turing exe file open on the desktop have it hiddne in the processes, or background of the desktop, so the users of the computer cant see the program unless they ctrl+alt+del and look at the processes...
This would be ideal for hidden keylog projects etc, please if you have any Idea how to do this let me know, thanks.
-Bakon |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Martin
|
Posted: Wed Apr 13, 2005 7:32 pm Post subject: (No subject) |
|
|
You can't do it with Turing, because you can't make system calls. Sorry. |
|
|
|
|
|
Bakon
|
Posted: Thu Apr 14, 2005 9:30 am Post subject: (No subject) |
|
|
So theres no possible way? What do you mean turing cant make system calls, you can always use system command line to make some system calls. And if this cant be done is there any way to imitate it, to like just hide the program, instead of running in processes? |
|
|
|
|
|
Martin
|
Posted: Thu Apr 14, 2005 9:54 am Post subject: (No subject) |
|
|
There's Sys.Exec, but that won't allow you to use system commands or make API calls. |
|
|
|
|
|
md
|
Posted: Thu Apr 14, 2005 12:33 pm Post subject: (No subject) |
|
|
If you want to do something like this try learning C, C++, C#, Pascal, or one of the many other languages that are used for low level programming. |
|
|
|
|
|
Bakon
|
Posted: Thu Apr 14, 2005 2:13 pm Post subject: (No subject) |
|
|
Damn, that really sucks
But i think i might be able to think of a way to get a litlte more hidden, then a 650 x 400 program screen
Another question:
~~~~~~~~~~~~~~~~~~~~
Alright, wondering if there was a way to minimize the program run window to either the task bar, or the right corner of the screen... when opened. |
|
|
|
|
|
Martin
|
Posted: Thu Apr 14, 2005 2:23 pm Post subject: (No subject) |
|
|
Yes, you can do that. It's an option when you call View.SetScreen. Just look in the help file. |
|
|
|
|
|
Bakon
|
Posted: Thu Apr 14, 2005 2:43 pm Post subject: (No subject) |
|
|
alright, thanks man. |
|
|
|
|
|
Sponsor Sponsor
|
|
|
[Gandalf]
|
Posted: Thu Apr 14, 2005 3:32 pm Post subject: (No subject) |
|
|
An idea is, get some program that makes your program invisible, and use the Sys.Exec command to run that program.
It's amazing how many topics/post we have been having about doing hacking things and programs for negative purposes . |
|
|
|
|
|
Scooter341
|
Posted: Tue Apr 19, 2005 8:22 pm Post subject: (No subject) |
|
|
With your declared variables put:
code: |
var iWindow : int := Window.Open ("graphics:x;y")
Window.Hide (iWindow)
|
And when you generate a stand-alone program check the box that says "Immediatly Close Run Window(s)" |
|
|
|
|
|
|