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
[Desktop Entry]
Version=5.1
Name=Whatsapp By Xnuvers007
Type=Application
Exec='/usr/local/bin/whatsdesk.sh'
Icon=/path/to/image
StartupNotify=true
Terminal=false
file whatsdesk.sh like this
@Xnuvers007
Xnuvers007 / conky.conf
Last active September 6, 2024 19:49
this file is config for conky
-- vim: ts=4 sw=4 noet ai cindent syntax=lua
--[[
Conky, a system monitor, based on torsmo
Any original torsmo code is licensed under the BSD license
All code written since the fork of torsmo is licensed under the GPL
Please see COPYING for details
# This is a simple code for check broken link with python
# Usage --url https://google.com or -u https;//google.com
import requests
from bs4 import BeautifulSoup
import threading
import argparse
@Xnuvers007
Xnuvers007 / redirect.py
Created June 26, 2023 01:31
This is code for get all link href from website and get result where that link to redirect it
import requests
from urllib.parse import urljoin
def get_redirected_url(url):
response = requests.head(url, allow_redirects=True)
return response.url
def get_all_links(url):
@Xnuvers007
Xnuvers007 / main.py
Last active December 1, 2024 18:49
This is script for html2image or get screenshot with python and replit.com -> my project = https://replit.com/@Xnuvers007/s website = https://s.xnuvers007.repl.co/ss?url=https://google.com
from flask import Flask, request, send_from_directory, jsonify, redirect, url_for
from html2image import Html2Image
import os
from threading import Timer
from urllib.parse import urlparse
app = Flask(__name__)
# Configure Html2Image with custom flags
hti = Html2Image(output_path='output/',
@Xnuvers007
Xnuvers007 / main.py
Last active July 25, 2023 21:04
Script to check website vulnerability to clickjacking attacks. Uses Flask for web interaction, requests_html & BeautifulSoup for parsing, and provides protection recommendations..
from requests_html import HTMLSession
from bs4 import BeautifulSoup
website = input("Enter the website to check for clickjacking vulnerability: ")
url = 'https://clickjacker.io/test?url={website}'.format(website=website)
session = HTMLSession()
response = session.get(url)
response.html.render(sleep=3, timeout=20)
@Xnuvers007
Xnuvers007 / main.py
Last active July 29, 2023 08:51
Let me tracking your fake url with my very safe code
import os
try:
import requests
from bs4 import BeautifulSoup
except ImportError:
print("Required packages not found. Attempting to install them.")
try:
os.system("pip install requests beautifulsoup4")
print("Packages installed successfully.")
@Xnuvers007
Xnuvers007 / main.js
Created August 25, 2023 08:20
this is script for play game "guess the picture" || ini adalah script untuk memainkan permainan tebak gambar
import axios from 'axios';
const url = 'https://raw.githubusercontent.com/BochilTeam/database/master/games/tebakgambar.json';
axios.get(url)
.then(response => {
const data = response.data;
// Generate a random index between 0 and 999
const randomIndex = Math.floor(Math.random() * 1000);
@Xnuvers007
Xnuvers007 / main.py
Last active October 14, 2023 10:19
lirikgoogle.py
from flask import Flask, request, jsonify
import requests, random, time
from bs4 import BeautifulSoup
from fake_useragent import UserAgent
app = Flask(__name__)
user_agent = UserAgent()
random_user_agent = user_agent.random