
-----------------------------------
Bakon
Wed Apr 13, 2005 6:14 pm

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

-----------------------------------
Martin
Wed Apr 13, 2005 7:32 pm


-----------------------------------
You can't do it with Turing, because you can't make system calls. Sorry.

-----------------------------------
Bakon
Thu Apr 14, 2005 9:30 am


-----------------------------------
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
Thu Apr 14, 2005 9:54 am


-----------------------------------
There's Sys.Exec, but that won't allow you to use system commands or make API calls.

-----------------------------------
md
Thu Apr 14, 2005 12:33 pm


-----------------------------------
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
Thu Apr 14, 2005 2:13 pm


-----------------------------------
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 :D

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
Thu Apr 14, 2005 2:23 pm


-----------------------------------
Yes, you can do that. It's an option when you call View.SetScreen. Just look in the help file.

-----------------------------------
Bakon
Thu Apr 14, 2005 2:43 pm


-----------------------------------
alright, thanks man.

-----------------------------------
[Gandalf]
Thu Apr 14, 2005 3:32 pm


-----------------------------------
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
Tue Apr 19, 2005 8:22 pm


-----------------------------------
With your declared variables put:

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)"
