Skip to content

Instantly share code, notes, and snippets.

@alufers
Created March 28, 2016 19:16
Show Gist options
  • Save alufers/0a6d6d90ac0b7a97bce7 to your computer and use it in GitHub Desktop.
Save alufers/0a6d6d90ac0b7a97bce7 to your computer and use it in GitHub Desktop.
BOOOT
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://szamus3.my3gb.com/
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
/* jshint -W097 */
var nicki = ['szarak', 'dupa', 'fifi', 'chester', 'korwin', 'max', 'kuba', 'jakub', 'nana', 'cosenza', 'madzia', 'madziulka', 'olka', 'ola', 'spider', 'mario', 'JavaSsie', 'jebciesiechuje', 'tymczasowy', 'nielogiczny', 'putin', 'maxu', 'pioootr', 'vap', 'rap', 'popek', 'pasek', 'dziennikowy', 'seba', 'sebus', 'monster', 'flaven', 'xxx', 'sasha.gray'];
var sufixy = ['xxx', '1999', '1998', '1996', '1998', '2000', '3000', '2001', '01', '2002', '02', 'ultra', 'super', 's', 'a', '2006', '2009', '99', '10', '4833', '47', '4747', 'pax', 'dotcom', 'pah', 'xxx', 'czerwony', 'sex'];
var serwisy = ['gmail.com', 'wp.pl', 'o0.pl', 'o2.pl', 'tlen.pl', 'rsi.pl', 'onet.pl', 'windowslive.com', 'hotmail.com', 'facebook.com'];
var hasla = ['%', '___', '$', '%', '&', '8', '9', '20', '*', '[]', '(', '^', '&'];
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
function randpass() {
var pass = '';
pass += rndFromArray(nicki);
if(Math.random() > 0.7) {
pass += rndFromArray(hasla);
}
if(Math.random() > 0.3) {
pass += getRandomInt(0, 20);
}
return pass;
}
function randmail() {
var mail = '';
if(Math.random() > 0.7) {
mail += rndFromArray(sufixy);
}
mail += rndFromArray(nicki);
if(Math.random() > 0.3) {
mail += rndFromArray(sufixy);
} else {
if(Math.random() > 0.3) {
mail += getRandomInt(90, 99);
}
}
mail += '@';
mail += rndFromArray(serwisy);
return mail;
}
function rndFromArray(items) {
return items[Math.floor(Math.random()*items.length)];
}
document.getElementById('email').value = randmail();
document.getElementById('pass').value = randpass();
document.getElementById("login_form").submit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment