Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - romancodis

Pages: [1]
1
C - C++ / Re: Help for making c program invisble
« 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

2
C - C++ / Re: [C++] making some screenshots with gdiplus
« on: January 30, 2016, 10:44:37 pm »
Hi buddy,
                  i just compiled your code in gcc compiler by using following command
"g++ filename.cpp  screenshot.h -o filename.exe"
That is give  undefined reference says lot .what i will do to overcome this problem


thanks  ;)


3
C - C++ / Re: Help for making c program invisble
« 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                 

4
C - C++ / Re: Help for making c program invisble
« 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

5
C - C++ / Re: Help for making c program invisble
« 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>

6
C - C++ / 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

7
Beginner's Corner / it possible crack win 7 and 8 sam files
« on: December 24, 2015, 10:58:00 am »
hai buddies,
                         i want to test my strength of password which is my pc with windows 7 and 8 operating systems, i fixed my password with combination of numerical and alphabetical and symbols and up to 8 digits . it possible to obtain password by cracking SAM, if any tools working
if possible how long its take time
Thanks in advance

8
Web Oriented Coding / Re: Inspect element automation in browser
« on: December 24, 2015, 10:43:59 am »
what do you meant source code? All the broswer sees is HTML, under normal circumstances that nothing is fucked in the server, and i hope this is what you mean mate, the HTML.

This my friend is as simple as fucking a whore, and rather just a short.
Code: (ruby) [Select]
require 'net/http'

url = URI.parse('http://evilzone.org')
req = Net::HTTP::Get.new(url.to_s)
res = Net::HTTP.start(url.host, url.port) {|http|
  http.request(req)
}
puts res.body

Code: (python) [Select]
import requests

r = requests.get('https://evilzone.org')
print r.text

Code: (javascript) [Select]
//Node.js, feel la kenjoe41 baby.
var request = require("request");

var parseHTML = function(html) {
    //parse it anyway you want
};

request("http://evilzone.org", function (error, response, body) {
    if (!error) {
        parseHtml(body);
    } else {
        console.log(error);
    }
});

Code: (D) [Select]
import std.net.curl, std.stdio;

auto content = get("http://evilzone.org");

writeln(content);

* kenjoe41 thinks that is enough.

wow man, is awesome . and i need to do edit the contents of website by using inspect element by automation, not only view the source code and modifying on client side

9
Web Oriented Coding / Re: Inspect element automation in browser
« on: December 24, 2015, 10:35:44 am »
I think you are sort of missing the point...  Take a look at the DOM (Document Object Model) this is probably better suited for what you want to do?
its possible to make inspect element by DOM, sorry i dont know about DOM .but i want to know please tell me way to make inspect element automation using DOM

10
Web Oriented Coding / Re: Inspect element automation in browser
« on: December 24, 2015, 10:32:45 am »
uhh...?

Do you want to scrape and download the source automatically.. or.. do you want a script to press f12 for you?

i dont want to download source code automatically, instead of changing the coding in client side for change the working of particular website for our use

11
Web Oriented Coding / Inspect element automation in browser
« on: December 23, 2015, 10:29:10 am »
Hai,
i have some question about "inspect element", which is a option in major browsers to view source code of web pages . I want to make a script to automate inspect element tool


Thanks in advance  :)

12
Beginner's Corner / Re: Discover all IP addresses in a Local network.
« on: November 19, 2015, 10:25:21 am »
For Windows use Wnetwatcher:
http://www.nirsoft.net/utils/wireless_network_watcher.html

Or use AngryIpscanner  (windows, mac, linux)
http://angryip.org/download/


Feel like this question should have been googled first.



yes OE 800  said correctly , angry ip scanner is the better solution for it

13
Beginner's Corner / Re: Metasploit crashes remote system
« on: July 21, 2015, 11:50:43 am »
Backtrack is great, but really obsolete. Try Kali linux
He is correct try kali linux for the advance stuff

14
High Quality Tutorials / Re: What is hacking
« on: July 21, 2015, 10:49:24 am »
Greatest post and very useful to me . iam waiting for your next article

Pages: [1]