Php keystroke analysis client-side

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ste

    #1

    Php keystroke analysis client-side

    Hello,
    my goal would be implementing some keystroke analysis using php. I'm a
    novice in php, so i ask your advice: according to you, is it possible
    to log each keystroke client-side even if php is a server-side
    language, or shall i use JavaScript and make the client run the
    program locally? And, if i can use php to do that, how can i implement
    a feature logging keystrokes on the client system?

    Thanks,

    Stefano
  • Pedro Graca

    #2
    Re: Php keystroke analysis client-side

    Ste wrote:[color=blue]
    > my goal would be implementing some keystroke analysis using php. I'm a
    > novice in php, so i ask your advice: according to you, is it possible
    > to log each keystroke client-side even if php is a server-side
    > language,[/color]

    No, absolutely impossible!
    [color=blue]
    > or shall i use JavaScript and make the client run the
    > program locally?[/color]

    If you do that, don't forget the

    <noscript>... </noscript>

    tags, if that is somehow necessary for navigating your site.
    [color=blue]
    > And, if i can use php to do that, how can i implement
    > a feature logging keystrokes on the client system?[/color]

    You can't.

    --
    USENET would be a better place if everybody read: : mail address :
    http://www.catb.org/~esr/faqs/smart-questions.html : is valid for :
    http://www.netmeister.org/news/learn2quote2.html : "text/plain" :
    http://www.expita.com/nomime.html : to 10K bytes :

    Comment

    • FLEB

      #3
      Re: Php keystroke analysis client-side

      Regarding this well-known quote, often attributed to Ste's famous "10 May
      2004 06:22:42 -0700" speech:
      [color=blue]
      > Hello,
      > my goal would be implementing some keystroke analysis using php. I'm a
      > novice in php, so i ask your advice: according to you, is it possible
      > to log each keystroke client-side even if php is a server-side
      > language, or shall i use JavaScript and make the client run the
      > program locally? And, if i can use php to do that, how can i implement
      > a feature logging keystrokes on the client system?
      >
      > Thanks,
      >
      > Stefano[/color]

      You'd probably be best off with a Java applet. Maybe Flash, even.

      --
      -- Rudy Fleminger
      -- sp@mmers.and.ev il.ones.will.bo w-down-to.us
      (put "Hey!" in the Subject line for priority processing!)
      -- http://www.pixelsaredead.com

      Comment

      • Andy Hassall

        #4
        Re: Php keystroke analysis client-side

        On 10 May 2004 06:22:42 -0700, kabor.bugtraq@k atamail.com (Ste) wrote:
        [color=blue]
        >my goal would be implementing some keystroke analysis using php. I'm a
        >novice in php, so i ask your advice: according to you, is it possible
        >to log each keystroke client-side even if php is a server-side
        >language,[/color]

        Clearly not...
        [color=blue]
        > or shall i use JavaScript and make the client run the
        >program locally?[/color]

        You would have to.
        [color=blue]
        >And, if i can use php to do that, how can i implement
        >a feature logging keystrokes on the client system?[/color]

        Using the onkeypress intrinsic event? (HTML4.0.1 sec. 18.2.3). What's this for
        anyway; a typing speed counter, or something more insidious?

        --
        Andy Hassall <andy@andyh.co. uk> / Space: disk usage analysis tool
        http://www.andyh.co.uk / http://www.andyhsoftware.co.uk/space

        Comment

        Working...