Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Ubiquiti Radio UNII
  3. // @namespace http://tisd.net
  4. // @version 0.2
  5. // @description Enters passwords on Ubiquiti Radios
  6. // @author Janca
  7. // @include http*://10.123.*/unii*
  8. // @include http*://10.16.*/unii*
  9. // @grant none
  10. // ==/UserScript==
  11. var url = document.URL;
  12.  
  13. var username = document.getElementById("uniband_name");
  14. username.value = "TISD, Inc.";
  15.  
  16. var password = document.getElementById("uniband_key");
  17. if (url.indexOf("master") == -1) {
  18. password.value = "Y2FT1-6AG7L-Q42C1-GG322";
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement