Skip to content

Instantly share code, notes, and snippets.

View Xnuvers007's full-sized avatar
💭
Lily Loly Zyaa ❤️

XnuxersXploitXen Xnuvers007

💭
Lily Loly Zyaa ❤️
View GitHub Profile
@Xnuvers007
Xnuvers007 / Word_Negatif_Pos_Net_Detection.ipynb
Created December 25, 2025 19:57
Detection Word with value negative, positive or netral
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Xnuvers007
Xnuvers007 / korban.html
Created December 23, 2025 23:44
Reverse Tabnabbing
<!DOCTYPE html>
<html lang="id">
<head>
<title>BANK AMAN - Website Asli</title>
<style>
body { background-color: #e0f2fe; font-family: sans-serif; padding: 50px; text-align: center; }
h1 { color: #0369a1; }
.promo-box {
background: white; padding: 20px; border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1); display: inline-block;
@Xnuvers007
Xnuvers007 / ExampleVuln.js
Last active December 9, 2025 19:37
postMessage Vulnerable Exploit ?
self.addEventListener('message', event => {
if (event.data && event.data.type === 'SKIP_WAITING') {
self.skipWaiting();
}
if (event.data && event.data.type === 'GET_VERSION') {
event.ports[0].postMessage({ version: '1.0.0-no-cache' });
}
if (event.data && event.data.type === 'ECHO_TEST') {
@Xnuvers007
Xnuvers007 / main.py
Created November 9, 2025 13:55
scraping for codes game roblox
import requests
import random
import datetime
from bs4 import BeautifulSoup
import sys
class Colors:
HEADER = '\033[95m'
BLUE = '\033[94m'
GREEN = '\033[92m'
@Xnuvers007
Xnuvers007 / main.py
Created October 14, 2025 03:43
Webtoon scraper
import os
from sys import platform
try:
import requests
from bs4 import BeautifulSoup
from PIL import Image
except (ModuleNotFoundError, ImportError):
if platform == "win32":
os.system("pip install requests bs4 Pillow")
import time
import subprocess
import os
from sys import platform
try:
from watchdog.observers import Observer
from watchdog.events import PatternMatchingEventHandler
except (ModuleNotFoundError, ImportError):
print("watchdog module not found. Installing...")
#!/bin/bash
# === macOS/Linux Script ===
# Check if the virtual environment exists
if [ ! -d "venv" ]; then
echo "Creating virtual environment in the current directory..."
python3 -m venv venv
if [ $? -ne 0 ]; then
echo "Failed to create virtual environment."
exit 1
@Xnuvers007
Xnuvers007 / Khsinspect.js
Last active October 17, 2025 11:06
Khs my unpam dan mentari
javascript:(function () {
function processPage() {
const groups = document.querySelectorAll('div[role="radiogroup"]');
let selected = 0;
groups.forEach(group => {
const label = Array.from(group.querySelectorAll('.q-radio__label'))
.find(lbl => {
const text = lbl.textContent.trim().toLowerCase();
return text === 'selalu' || text === 'sangat mampu';
(async function scrapeAndDownloadFacebookProfiles() {
const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
const scrollPauseTime = 3000; // Delay between scrolls
const scrollLimit = 50; // Safety limit for scrolling
let previousHeight = 0;
let scrollCount = 0;
console.log("🔃 Scrolling page...");
while (scrollCount < scrollLimit) {
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.