[Java] Java에서 후킹이 가능한가요?

Zeroidle의 이미지

C언어에 대해서는 하나도 모르는데요

A라는 프로그램이 활성화 상태일때
B라는 프로그램에서 키입력을 감지하게 끔 하는게

글로벌 후킹이라고 들었습니다.

이걸 자바에서 구현해보려고 하는데요..

자바에서 후킹이 가능할까요? 'ㅡ'

java.awt.robot 클래스를 이용하여 오토마우스나 기타 매크로가 가능한데

후킹까지 된다면 자바만으로도 윈도우 어플리케이션이 가능할꺼같아서요

자바에서 후킹이안된다면..

C를 전혀모르는 사람이 기초적인 후킹까지 배우려면

어느코스가 최단거리일지도 조언을 좀 해주셨으면^^;

카二리의 이미지

윈도우 플랫폼이라면 제가 예전에 자바로 해볼려고.. 여러가지로 알아봤는대..

pure java로는 불가능 한걸로 나름대로 결말을 내렸습니다..

jni 같은걸 쓰면 가능 하긴 한대 어짜피 네이티브 컴파일 되는걸 쓸꺼면..

자바를 궂이 안쓰고 그냥 그걸로 하는게 나은듯..

다른 방법이 있는지는 잘 모르겠습니다. :oops: (사실 저두 궁금합니다~ :wink: )

새 생각 :)

Zeroidle의 이미지


import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class AutoTyping extends Thread {
    JFrame jFrame;
    JPanel jPanel;
    JLabel jLabel;
    JTextField jTextField;
    JButton jButton;
    Robot rob;
        
    AutoTyping() {

        jFrame = new JFrame("혼자 돌아댕깁니다.");
        jPanel = new JPanel();
        jPanel.setLayout(new GridLayout(3,1));

        jTextField = new JTextField(10);
        jLabel = new JLabel("테스트입니다.");

        jButton = new JButton("종료");

        jButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                System.gc();
                System.exit(0);
            }
        });


        jPanel.add(jTextField);
        jPanel.add(jLabel);
        jPanel.add(jButton);
        jFrame.getContentPane().add(jPanel);
        jFrame.setSize(150,100);
        jFrame.setLocation(350,400);
        jFrame.setVisible(true);
        
        try {
            process();
        } catch (Exception e) { }
    }

    public void process() throws AWTException {   

        this.start();
        rob = new Robot();
        
        int keyInput[] = {
            KeyEvent.VK_T,
            KeyEvent.VK_E,
            KeyEvent.VK_S,
            KeyEvent.VK_T,
            KeyEvent.VK_I,
            KeyEvent.VK_N,
            KeyEvent.VK_G
        };
        rob.delay(1000);
        jTextField.requestFocus();
        for (int i = 0; i < keyInput.length; i++) {
            rob.keyPress(keyInput[i]);
            System.out.println(keyInput[i]);
            rob.delay(500);
        }
        rob.keyPress(KeyEvent.VK_ENTER);
        
        this.stop();
    }
    
    public void run() {
        while (true) {
            try {
                Robot rob2 = new Robot();
                for (int i = 200; i < 600; i=i+15) {
                    rob2.mouseMove(i,600);
                    sleep(50);
                }
                for (int i = 600; i > 200; i=i-15) {
                    rob2.mouseMove(i,600);
                    sleep(50);
                }             
            }
            catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
    
    public static void main(String args[])  {
        new AutoTyping();
    }
}

참고로 요런건데요... 요건제가 조금수정한거고 원본이 어디갔는지모르겠네요
atie의 이미지

B 프로그램의 키 입력을 A 프로그램에서 읽는다가 질문의 요지라면...
A 프로그램에서 Runtime.getRuntime()으로 Runtime object (aRT) 를 생성하고, B 프로그램을 생성한 Runtime의 exec method를 사용해서 Process object (bProc) 로 만듭니다. 그러면, bProc.getInputStream()을 해서 B 프로그램의 standard output을 읽을 수 있습니다.

예를 들어,

Runtime aRT = Runtime.getRuntime();
Process aProc = aRT.exec("mplayer -cache 256 mms://211.233.92.49/H_2TV");
BufferedReader kbdInput =
				new BufferedReader(
					new InputStreamReader(aProc.getInputStream()));
String line;
while ((line = kbdInput.readLine()) != null) {
		if (line.endsWith("PAUSE  =====")){
			System.out.println("Key pressed to end");          
			System.exit(0);
      }
		System.out.println(line);
}

이걸 응용하면, B 프로그램에서 키보드 입력을 KeyEvent.VK_T 이런 식으로 치환해서 Standard Output으로 해주면 대강 될 것 같은데... 직접 해보시죠. :wink:

----
I paint objects as I think them, not as I see them.
atie's minipage

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.