Advertisement
Pandafuchs

Untitled

Feb 8th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Stresstester
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match http://quezstresser.com/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. $('input').eq(0).val('85.22.139.37');
  14. $('input').eq(1).val('443');
  15. $('input').eq(2).val('300');
  16. $('select option').filter(function(){
  17. return $(this).prop('value') === 'NTP'
  18. }).prop('selected', true);
  19.  
  20. if($('.alert-error').length) { $('button').click(); } else { /* code if not found */ }
  21.  
  22. // Your code here...
  23. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement