• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Plugin API Bug: Bypassing the need for user interaction before editing a document.

New Here ,
Jul 20, 2020 Jul 20, 2020

Copy link to clipboard

Copied

Hello.

Normally, before editing a document through plugin API, a user must interact with the plugin in some way (e.g. clicking a button), but JavaScript allows us to fake a button "click" through the code using HTMLElement's click() function, which bypasses this need because that faked button "click" event is considered to have been made by the user. I assume this is not intended to work this way?

Here's the code of this little "exploit":

const div = document.createElement('div');
div.addEventListener('click', () => {
    // Now we can edit the document without any problems:
    // application.editDocument(...)

    div.remove();
});
document.body.appendChild(div);

// Wait for our <div> to be actually added to the DOM, otherwise
// the click event will not be fired.
setTimeout(() => {
    div.click();
});


Tested on the latest version (30.3.12.5).

TOPICS
Plug-ins

Views

179

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Adobe Employee , Jul 20, 2020 Jul 20, 2020

Hi there,

 

Thanks for reaching out. We have a separate forum for plugins: https://forums.adobexdplatform.com/

 

I'd request posting your query there so that plugin experts can help you.

 

Regards

Rishabh

Votes

Translate

Translate
Adobe Employee ,
Jul 20, 2020 Jul 20, 2020

Copy link to clipboard

Copied

LATEST

Hi there,

 

Thanks for reaching out. We have a separate forum for plugins: https://forums.adobexdplatform.com/

 

I'd request posting your query there so that plugin experts can help you.

 

Regards

Rishabh

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines