This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Fetch information from https://aidattakipsistemi.com | |
| import json | |
| import requests | |
| BASE = "https://aidattakipsistemi.com/webyonetimcellcom" | |
| # Fetch values in js console: (press f12 and paste) | |
| # document.cookie.replaceAll("%22", "\"").replaceAll("%2C", ", ") | |
| siteid=xxxxx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import os | |
| import socket | |
| import json | |
| class IpcServer: | |
| def __init__(self, path): | |
| self.server = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) | |
| if os.path.exists(path): | |
| os.unlink(path) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| / | |
| /.env | |
| /.env.backup | |
| /.env.local | |
| /.env.old | |
| /.env.prod | |
| /.env.production | |
| /.git/HEAD | |
| /.git/config | |
| /.npmrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1.0.133.208 | |
| 1.0.209.177 | |
| 1.13.2.59 | |
| 1.13.14.209 | |
| 1.14.15.205 | |
| 1.14.142.52 | |
| 1.15.13.216 | |
| 1.15.39.219 | |
| 1.15.58.114 | |
| 1.15.85.193 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import socket | |
| def detect_portal(): | |
| s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| s.connect(("detectportal.firefox.com", 80)) | |
| s.send(b'GET /\n\r\n') | |
| data = s.recv(1024).decode("utf-8").strip() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Create merged input. Merged all output sources. | |
| # Insert this script in /etc/X11/xinit/xinitrc.d/ | |
| if [ "$1" == "-u" ]; then | |
| # Unload the loopback and null sink modules | |
| pactl unload-module module-loopback | |
| pactl unload-module module-null-sink | |
| else | |
| # Exit if already loaded. | |
| if pactl list sources short | grep "combined" &>/dev/null ; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # remove init symlink (or move) | |
| rm /sbin/init | |
| # write preinit | |
| cat > /sbin/init <<EOF | |
| mkdir /run/systemd | |
| touch /run/systemd/journal | |
| exec /lib/systemd/systemd | |
| EOF | |
| # make executable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <gio/gio.h> | |
| #include <stdio.h> | |
| /* gcc glib_screenshot.c -o screenshot `pkg-config --cflags --libs gio-2.0 glib-2.0` */ | |
| static GMainLoop *loop; | |
| /* Response signal handler */ | |
| static void | |
| on_response(GDBusProxy *proxy, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ss -p -x | grep -Eo '".+"' | sort | uniq -c | tr -s " " | sort -Vr | head -n 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import os | |
| import pwd | |
| import grp | |
| import traceback | |
| import pyotp | |
| import json | |
| """ | |
| { |
NewerOlder