Author Topic: Help for making c program invisble  (Read 1625 times)

0 Members and 1 Guest are viewing this topic.

Offline romancodis

  • /dev/null
  • *
  • Posts: 15
  • Cookies: -9
    • View Profile
Help for making c program invisble
« 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

Offline kenjoe41

  • Symphorophiliac Programmer
  • Administrator
  • Baron
  • *
  • Posts: 990
  • Cookies: 224
    • View Profile
Re: Help for making c program invisble
« Reply #1 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.
If you can't explain it to a 6 year old, you don't understand it yourself.
http://upload.alpha.evilzone.org/index.php?page=img&img=GwkGGneGR7Pl222zVGmNTjerkhkYNGtBuiYXkpyNv4ScOAWQu0-Y8[<NgGw/hsq]>EvbQrOrousk[/img]

Offline ande

  • Owner
  • Titan
  • *
  • Posts: 2664
  • Cookies: 256
    • View Profile
Re: Help for making c program invisble
« Reply #2 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
if($statement) { unless(!$statement) { // Very sure } }
https://evilzone.org/?hack=true

Offline may1

  • Serf
  • *
  • Posts: 20
  • Cookies: 0
  • ZERO
    • View Profile
Re: Help for making c program invisble
« Reply #3 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 ?

Offline romancodis

  • /dev/null
  • *
  • Posts: 15
  • Cookies: -9
    • View Profile
Re: Help for making c program invisble
« Reply #4 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>

Offline romancodis

  • /dev/null
  • *
  • Posts: 15
  • Cookies: -9
    • View Profile
Re: Help for making c program invisble
« Reply #5 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

Offline romancodis

  • /dev/null
  • *
  • Posts: 15
  • Cookies: -9
    • View Profile
Re: Help for making c program invisble
« Reply #6 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                 

Offline romancodis

  • /dev/null
  • *
  • Posts: 15
  • Cookies: -9
    • View Profile
Re: Help for making c program invisble
« Reply #7 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

Offline Architect

  • Sir
  • ***
  • Posts: 428
  • Cookies: 56
  • STFU
    • View Profile
    • Rootd IRC
Re: Help for making c program invisble
« Reply #8 on: February 08, 2016, 10:24:39 am »
Nope, I have no idea what this guy just said.