Auto-Complete AWS/OKTA Authorization requested

Confirm automatically.

  1. // ==UserScript==
  2. // @name Auto-Complete AWS/OKTA Authorization requested
  3. // @namespace Zeko Scripts
  4. // @include *://device.sso.us-east-1.amazonaws.com/?user_code*
  5. // @include *://${comp}-sso.awsapps.com/start/user-consent/authorize.html?clientId*
  6. // @include https://${comp}-sso.awsapps.com/start/user-consent/login-success.html
  7. // @include *://${comp}.okta.com/oauth2/v1/authorize?client_id*
  8. // @include *//${comp}.okta.com/app/amazon_aws_sso*
  9. // @grant none
  10. // @description Confirm automatically.
  11. // @author zeko zhang
  12. // @version 1.0.0
  13. // @require https://code.jquery.com/jquery-1.7.2.min.js
  14. // @icon https://device.sso.us-east-1.amazonaws.com/favicon.png
  15. // @license MIT
  16. // ==/UserScript==
  17.  
  18. var waitInterval = 500;
  19. var loadInterval = 3000;
  20. var pwd = ''
  21.  
  22.  
  23. $(() => {
  24. var clickOKTASubmit = function() {
  25. // Get password
  26. var password = $('input[name="credentials.passcode"]')[0];
  27.  
  28. let event = document.createEvent('HTMLEvents');
  29. event.initEvent('input', true, true);
  30. password.value = pwd;
  31. password.dispatchEvent(event)
  32.  
  33. setTimeout(function () {
  34. var savaButton = $('input[data-type="save"]');
  35. savaButton[0].click();
  36. }, waitInterval);
  37. }
  38.  
  39. var waitPasswordAndClickOKTASubmit = function() {
  40. if ($('input[name="credentials.passcode"]')[0] !== undefined) {
  41. clickOKTASubmit();
  42. } else {
  43. setTimeout(waitPasswordAndClickOKTASubmit, waitInterval);
  44. }
  45. }
  46.  
  47. var clickOKTAVerify = function() {
  48. // Click Okta Verify
  49. setTimeout(function () {
  50. var windowX = window.screenX;
  51. var windowY = window.screenY;
  52. console.log('当前窗口位置:', windowX, windowY);
  53.  
  54. var windowWidth = window.innerWidth;
  55. var windowHeight = window.innerHeight;
  56.  
  57. console.log('窗口宽度:', windowWidth);
  58. console.log('窗口高度:', windowHeight);
  59.  
  60. var buttonX = windowX + windowWidth/2 - 130;
  61. var buttonY = windowY + windowHeight/2 + (470/2)/1.647 - 30
  62. console.log('按钮位置:', buttonX, buttonY);
  63.  
  64. setTimeout(function () {
  65. // 创建一个虚拟的点击目标
  66. var virtualTarget = document.createElement('div');
  67. virtualTarget.style.width = '100px';
  68. virtualTarget.style.height = '30px';
  69. virtualTarget.style.backgroundColor = 'red';
  70. virtualTarget.style.position = 'absolute';
  71. virtualTarget.style.top = buttonY+'px'; // 设置点击目标的位置
  72. virtualTarget.style.left = buttonX+'px'; // 设置点击目标的位置
  73. document.body.appendChild(virtualTarget);
  74.  
  75. // 创建一个鼠标点击事件
  76. var clickEvent = new MouseEvent('click', {
  77. bubbles: true,
  78. cancelable: true,
  79. view: window
  80. });
  81.  
  82. // 在虚拟点击目标上触发点击事件
  83. virtualTarget.dispatchEvent(clickEvent);
  84. }, 5000);
  85.  
  86. }, 5000);
  87. }
  88.  
  89. var waitUserNameOrPasswordThenRun = function() {
  90. if ($('input[name="identifier"]')[0] !== undefined || $('input[name="credentials.passcode"]')[0] !== undefined) {
  91. var userNames = $('input[name="identifier"]');
  92. if(userNames !== undefined && userNames.length > 0) {
  93. // Submit username
  94. setTimeout(function () {
  95. var savaButton = $('input[data-type="save"]');
  96. savaButton[0].click();
  97. }, waitInterval);
  98.  
  99.  
  100. // Submit password
  101. waitPasswordAndClickOKTASubmit();
  102. } else {
  103. // Submit password
  104. waitPasswordAndClickOKTASubmit();
  105. }
  106. } else {
  107. setTimeout(waitUserNameOrPasswordThenRun, waitInterval);
  108. }
  109. }
  110.  
  111. var autoConfirmFunc = function () {
  112. var confirmCodeButton = $('#cli_verification_btn');
  113. if(confirmCodeButton !== null) {
  114. confirmCodeButton.click();
  115. }
  116.  
  117. var loginButton = $('#cli_login_button');
  118. if(loginButton !== null) {
  119. loginButton.click();
  120. }
  121.  
  122. var currentUrl = window.location.href;
  123. if(currentUrl === 'https://${comp}-sso.awsapps.com/start/user-consent/login-success.html') {
  124. console.log("Current URL:" + currentUrl);
  125. }
  126.  
  127. if(currentUrl.startsWith('https://${comp}.okta.com/oauth2/v1/authorize?client_id') || currentUrl.startsWith('https://${comp}.okta.com/app/amazon_aws_sso')) {
  128. waitUserNameOrPasswordThenRun();
  129. }
  130. }
  131.  
  132. setTimeout(function () {
  133. autoConfirmFunc();
  134. }, waitInterval);
  135. })

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址