Skip to content

Instantly share code, notes, and snippets.

View flimtix's full-sized avatar
📚
Having Fun

Flimtix flimtix

📚
Having Fun
View GitHub Profile
@flimtix
flimtix / simple_file_transfer.py
Created February 11, 2026 23:22
Simple python file transfer
import http.server
import socketserver
import cgi
import os
import socket
HOST = "" # listen on all interfaces
PORT = 8000
class UploadHandler(http.server.SimpleHTTPRequestHandler):
@flimtix
flimtix / ShiftCipher.py
Created November 20, 2024 02:17
Shift Cipher
# https://www.dcode.fr/shift-cipher
def rotate_char(c, rotation):
if c.isalpha():
if c.isupper():
rotated = chr((ord(c) + rotation-65) % 26 + 65)
else:
rotated = chr((ord(c) + rotation-97) % 26 + 97)
else:
rotated = c
return rotated
@flimtix
flimtix / README.md
Last active February 20, 2022 02:53
KaliVM Setup Script

Kali Setup

This script will set up a Kali VM automatically. It will install and configure important tools. Of course this script can be used for any kind of Debian/Ubuntu machine, but this has never been tested.

Mark script as executable: chmod 777 filename.

The .conf files will overwrite the previous content. Previous configurations will not be applied and will be lost.

Install via script