EvilZone

Programming and Scripting => C - C++ => Topic started by: romancodis on January 18, 2016, 09:37:15 AM

Title: Help for making c program invisble
Post by: romancodis on January 18, 2016, 09:37:15 AM
Hi buddies,

                   i want to run my c program invisble, without users concern
if know please let me know:sad:

thanks in advance
Title: Re: Help for making c program invisble
Post by: kenjoe41 on January 18, 2016, 11:25:00 AM
You my friend are going to have tp define invisible. It is a malicious piece of C program? No worries, i know it is for educational purposes.
But in the world of computer, invisible can mean alot of things. You can as well post your code so that we know exactly where to hook in your code to become pffwh.
Title: Re: Help for making c program invisble
Post by: ande on January 18, 2016, 12:10:31 PM
You need to change it from a console application to a windows (win32?) application. This also changes a lot of things, there is no int main(), but a int WINAPI WinMain (), and variable types and a lot of other stuff is no longer as it used to be.

A few links to get you started:
http://stackoverflow.com/questions/6342935/start-a-program-without-a-console-window-in-background
http://winprog.org/tutorial/start.html
Title: Re: Help for making c program invisble
Post by: may1 on January 20, 2016, 09:06:08 PM
Hi,
There are different techniques depending on the platform you are targeting - are you looking at  Windows , Unix or embedded ?
Title: Re: Help for making c program invisble
Post by: romancodis on January 22, 2016, 08:24:38 AM
my code is not malicious, but i just want to know it possible or not .Mainly its windows based program
actually this is just learning code also

<code>
/*this is the Program for checking silent pinging function */
#include <stdio.h>
#include <stdlib.h>

  main()
{
    system("color a\n");

   
        printf("this is checking for while n silent pinging function\n");

system("ping -t 127.0.0.1");


   
    printf("Hello world!\n");
    return 0;
}


</code>
Title: Re: Help for making c program invisble
Post by: romancodis on January 22, 2016, 08:27:51 AM
Hi,
There are different techniques depending on the platform you are targeting - are you looking at  Windows , Unix or embedded ?

Hi may1 ,
                    I want to tested in windows , but it better to be know unix and embedded
Title: Re: Help for making c program invisble
Post by: romancodis on January 30, 2016, 09:48:13 PM
You need to change it from a console application to a windows (win32?) application. This also changes a lot of things, there is no int main(), but a int WINAPI WinMain (), and variable types and a lot of other stuff is no longer as it used to be.

A few links to get you started:
http://stackoverflow.com/questions/6342935/start-a-program-without-a-console-window-in-background
http://winprog.org/tutorial/start.html

Hi ande,
               I tested what you refer by your links there in three ideas in stackoverflow that will show  the output , but i ask i want to run my c program completely background even not visible from taskmanager. do you have any idea

Thanks                 
Title: Re: Help for making c program invisble
Post by: romancodis on February 03, 2016, 06:56:17 AM
I'm still search on google , about this no use .if anybody have any new idea let me know
Title: Re: Help for making c program invisble
Post by: Architect on February 08, 2016, 10:24:39 AM
Nope, I have no idea what this guy just said.