https://ipgeolocation.io/static/flags/<country_code>_64.png- Country Codes: https://www.banderas-mundo.es/descargar/api
https://ipgeolocation.io/static/flags/es_64.png| // Function to generate a random delay between min and max milliseconds | |
| function getRandomDelay(min, max) { | |
| return Math.floor(Math.random() * (max - min + 1)) + min; | |
| } | |
| // Function to pause execution for a given duration | |
| function sleep(ms) { | |
| return new Promise(resolve => setTimeout(resolve, ms)); | |
| } |
| <?php error_reporting (0);?> | |
| <?php | |
| /* | |
| Recomendacion validacion: | |
| en sqlite | |
| bcrypt | |
| multiple passwords, cookies, username, password, | |
| generar fake multiple users | |
| ofuscar el codigo en build | |
| */ |
| import paramiko | |
| import tkinter as tk | |
| from tkinter import filedialog | |
| from threading import Thread, Lock | |
| import queue | |
| # Configuración global | |
| HOST = "172.17.0.3" # Cambia por la IP del servidor SSH | |
| PORT = 22 | |
| USERNAME = "USERNAME" |
| try{ | |
| // Selecciona el elemento sobre el que deseas realizar scroll | |
| var element = document.querySelector("#message-pane-layout-a11y > div.ui-flex.a.cb.cc.cd.ci.cj.cl.cm.cn.co > div > div > div.fui-Primitive.___vw6lhn0.f1yrx710.f1l02sjl.f1115ve7.fp1ilsu.f1uhpfwc.fpk1gq1.f12t0xb8.f1gobicx.fl27ibc.f8k3ltm.f1qrc9k7.fmyufbi.fswk967"); | |
| // Query Selector de Chat de Microsoft Teams. Cambiar a voluntad. | |
| // Variables para controlar la dirección del scroll | |
| var scrollingDown = true; // Indica si está bajando o subiendo | |
| var scrollSpeed = 20; // Velocidad del scroll en píxeles por paso (ajusta según necesidad) |
| // | |
| // URL: https://app.snyk.io/org/<USERNAME>/projects | |
| // Author : https:github.com/j0rd1s3rr4n0 | |
| // | |
| async function deleteProjects() { | |
| const projectsContainer = document.querySelector( | |
| "#core > div > div > main > div.app-page.projects > div > div > div.projects-target-list__content" | |
| ); |
https://ipgeolocation.io/static/flags/<country_code>_64.png https://ipgeolocation.io/static/flags/es_64.png| import threading | |
| from ftplib import FTP | |
| import os | |
| def conectar_ftp(servidor, usuario, contrasena, contrasenas_correctas): | |
| try: | |
| # Intentamos establecer la conexión FTP | |
| ftp = FTP(servidor) | |
| ftp.login(usuario, contrasena) | |
| print("Conexión FTP exitosa con contraseña:", contrasena) |
A Pen by Jordi Serrano on CodePen.