0% found this document useful (0 votes)
717 views3 pages

Script Login

The document is a userscript that inserts 15 buttons on a login page. Each button, when clicked, will automatically fill the login form with credentials from an array of fake user accounts. The script aims to log into accounts without consent to potentially take over or misuse the accounts.

Uploaded by

Hassan Aharchan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
717 views3 pages

Script Login

The document is a userscript that inserts 15 buttons on a login page. Each button, when clicked, will automatically fill the login form with credentials from an array of fake user accounts. The script aims to log into accounts without consent to potentially take over or misuse the accounts.

Uploaded by

Hassan Aharchan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

// ==UserScript==

// @name BLSLOGIN
// @namespace [Link]
// @version 2023
// @description try to take over the world!
// @author MahDiMiDi
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @icon [Link]
sz=64&domain=[Link]
// @grant none
// ==/UserScript==

if (![Link]('title')
[0].[Link]().includes("gateway")) {
var Name = [
"1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14",
"15"
];

var data = [
{
mail: "rima.dr44@[Link]",
password: "Arwa123@"
},
{
mail: "essabbarziade1@[Link]",
password: "123456Ze@"
},
{
mail: "zinbadraissi1@[Link]",
password: "123456Zd@"
},
{
mail: "rachidbls@[Link]",
password: "252583"
},
{
mail: "rachidbls1@[Link]",
password: "814549"
},
{
mail: "rachidbls2@[Link]",
password: "444823"
},
{
mail: "minajaafari12@[Link]",
password: "777630"
},
{
mail: "nouredinezaitouni12@[Link]",
password: "723612"
},
{
mail: "faxxxx@[Link]",
password: "[email protected]"
},
{
mail: "faxxxx@[Link]",
password: "[email protected]"
},
{
mail: "XXXX",
password: "[email protected]"
},
{
mail: "XXXX",
password: "[email protected]"
},
{
mail: "XXXX",
password: "[email protected]"
},
{
mail: "XXXX",
password: "[email protected]"
},
{
mail: "XXXX",
password: "[email protected]"
}
];

var j = 0;

for (var i = 0; i <= 14; i++) {


var button = [Link]('input');
[Link] = ' ' + (i + 1);
[Link] = 'formulaire' + j;

// Apply CSS styles to make the buttons look attractive


[Link] = `
cursor: pointer;
border: 1.5px solid #000;
float: center;
font-size: 12px;
padding: 6px;
width: 60px;
margin-bottom: 4px;
background-color: #3498db; /* Background color */
color: #ffffff; /* Text color */
border-radius: 5px; /* Rounded corners */
text-align: center; /* Center text horizontally */
text-decoration: none; /* Remove underlines from links */
display: inline-block; /* Display as inline-block */
transition: background-color 0.3s; /* Transition effect on hover */
`;

// Add a hover effect to the buttons


[Link]("mouseover", function () {
[Link] = "#2980b9"; // Darker background on hover
});

[Link]("mouseout", function () {
[Link] = "#3498db"; // Restore the original
background on mouseout
});

// Insert the button before the form


[Link]('form')[0].[Link](button,
[Link]('form')[0]);

// Assign an event handler for each button


[Link]("click", function (index) {
return function () {
var mail = data[index].mail;
var password = data[index].password;
setValues(mail, password);
};
}(i));

j++;
}

function setValues(mail, password) {


[Link]('UserId1').value = mail;
[Link]('UserId2').value = mail;
[Link]('UserId3').value = mail;
[Link]('UserId4').value = mail;
[Link]('UserId5').value = mail;
[Link]('UserId6').value = mail;
[Link]('UserId7').value = mail;
[Link]('UserId8').value = mail;
[Link]('UserId9').value = mail;
[Link]('UserId10').value = mail;
[Link]('Password1').value = password;
[Link]('Password2').value = password;
[Link]('Password3').value = password;
[Link]('Password4').value = password;
[Link]('Password5').value = password;
[Link]('Password6').value = password;
[Link]('Password7').value = password;
[Link]('Password8').value = password;
[Link]('Password9').value = password;
[Link]('Password10').value = password;
}
}

You might also like