Clone
Module: Get Clipboard
Haoxi Tan edited this page 2020-01-07 12:10:53 +10:00

TODO## Summary

  • Objective: Steals content of the user's clipboard

  • Authors: bcoles

  • Browsers: IE 6-8 (IE 7&8 will prompt for permission)

  • Code

Internal Working

Uses the clipboardData API to retrieve content, and send it back in plaintext via a GET request.

var clipboard = clipboardData.getData("Text");

Feedback