XP Pro Java Console Appears With This Script - What Is It Doing??

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • geordietx
    New Member
    • Apr 2007
    • 2

    #1

    XP Pro Java Console Appears With This Script - What Is It Doing??

    Hi, I needed an answer to this question so I thought I'd find a Java forum that appeared to be friendly and tolerant of those who aren't well-versed in Java. Guess who won?? :-)

    In the last week, my Java console (previously utilized but never seen!) has popped up with this same exact script THREE times. Can somebody please tell me what this is trying to do and if I should be worried about a virus? I've run my main virus checker, and it showed nothing, but I have a lot of virus-checking related programs that I won't hesitate to break out immediately if someone would be so kind as to give me a clue as to what this is. I appreciate anybody's assistance. (FYI - all lines were indented with the exception of the two that begin with "java.lang.Exce ption:". The forum isn't holding the format.)

    java.lang.Excep tion: fcCall{0} :no such method exists
    at sun.plugin.com. JavaClass.getMe thod1(Unknown Source)
    at sun.plugin.com. JavaClass.getDi spatcher(Unknow n Source)
    at sun.plugin.com. DispatchImpl.in vokeImpl(Unknow n Source)
    at sun.plugin.com. DispatchImpl$1. run(Unknown Source)
    at java.security.A ccessController .doPrivileged(N ative Method)
    at sun.plugin.com. DispatchImpl.in voke(Unknown Source)
    java.lang.Excep tion: java.lang.Excep tion: fcCall{0} :no such method exists
    at sun.plugin.com. DispatchImpl.in vokeImpl(Unknow n Source)
    at sun.plugin.com. DispatchImpl$1. run(Unknown Source)
    at java.security.A ccessController .doPrivileged(N ative Method)
    at sun.plugin.com. DispatchImpl.in voke(Unknown Source)
  • geordietx
    New Member
    • Apr 2007
    • 2

    #2
    Originally posted by geordietx
    Hi, I needed an answer to this question so I thought I'd find a Java forum that appeared to be friendly and tolerant of those who aren't well-versed in Java. Guess who won?? :-)

    In the last week, my Java console (previously utilized but never seen!) has popped up with this same exact script THREE times. Can somebody please tell me what this is trying to do and if I should be worried about a virus? I've run my main virus checker, and it showed nothing, but I have a lot of virus-checking related programs that I won't hesitate to break out immediately if someone would be so kind as to give me a clue as to what this is. I appreciate anybody's assistance. (FYI - all lines were indented with the exception of the two that begin with "java.lang.Exce ption:". The forum isn't holding the format.)

    java.lang.Excep tion: fcCall{0} :no such method exists
    at sun.plugin.com. JavaClass.getMe thod1(Unknown Source)
    at sun.plugin.com. JavaClass.getDi spatcher(Unknow n Source)
    at sun.plugin.com. DispatchImpl.in vokeImpl(Unknow n Source)
    at sun.plugin.com. DispatchImpl$1. run(Unknown Source)
    at java.security.A ccessController .doPrivileged(N ative Method)
    at sun.plugin.com. DispatchImpl.in voke(Unknown Source)
    java.lang.Excep tion: java.lang.Excep tion: fcCall{0} :no such method exists
    at sun.plugin.com. DispatchImpl.in vokeImpl(Unknow n Source)
    at sun.plugin.com. DispatchImpl$1. run(Unknown Source)
    at java.security.A ccessController .doPrivileged(N ative Method)
    at sun.plugin.com. DispatchImpl.in voke(Unknown Source)

    Does anybody understand what this script is trying to do?? If it is harmless, please let me know that; if you don't have enough information to go on, please let me know that as well.

    Although I continue to utilize my anti-virus resources, and none of them show anything, this has come up yet again, and reading through the script makes me think it is indeed a virus. I just don't understand why my Java console would be appearing with regularity now, when I've never seen it before.

    Any help would be appreciated.

    Comment

    • JosAH
      Recognized Expert MVP
      • Mar 2007
      • 11453

      #3
      Originally posted by geordietx
      Does anybody understand what this script is trying to do??
      Yup, it's trying to invoke a method named "fcCall". The method doesn't exist so
      it can't be found. A priviledged method tries to invoke it so it goes through a
      SecurityManager . Are you trying to run an Applet?

      kind regards,

      Jos

      Comment

      Working...