Skip to content
View Romern's full-sized avatar

Block or report Romern

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Romern/README.md

GitHub Repos

  • syncMyMoodle: Syncing course material from Moodle at RWTH
  • redactionschemes: Redactable signature schemes library in go written for my Master's thesis

Smaller scripts/gists

Frida scripts

PostScript

Other

  • studydrive_download_new.py : reverse engineering exercise to use the StudyDrive mobile API to download course documents
  • libreoffice_domain_socket_to_rce.py: Showing how to instrument the LibreOffice OSL pipe to instrument it to execute arbitrary commands
  • blablacarmatrix.py: Get the available blablacar tours for multiple days and list it in a nice table
  • SOCKS 2 HTTP proxy: I use this on Android for MitM as its very simple to connect the phone directly to Burp without trouble
  • replaceProxy.py: ChatGPT generated proxy with a single target which replaces a certain byte sequence with another

Pinned Loading

  1. syncMyMoodle Public

    Synchronization client for RWTH Moodle

    Python 77 18

  2. redactionschemes Public

    Golang Library for Redactable Signatures

    Go 1

  3. CVE-2024-33871 Adapted from https://...
    1
    %!PS
    2
    
                  
    3
    %%% base64 encoding code
    4
    % http://www.sunshine2k.de/articles/coding/base64/understanding_base64.html
    5
    /base64DecodingTable [
  4. Download Studydrive course files
    1
    import hashlib
    2
    import requests
    3
    
                  
    4
    # app hat ratelimiting für session:
    5
    # 'x-ratelimit-limit': '30', 'x-ratelimit-remaining': '0', 'retry-after': '56', 'x-ratelimit-reset': '1708281174'
  5. Retrieve blablacar results for multi...
    1
    import requests
    2
    import datetime
    3
    import click
    4
    import tqdm
    5
    import uuid
  6. Frida script to use WhasApp after th...
    1
    Java.enumerateClassLoaders({
    2
        onMatch: function(loader){
    3
            Java.classFactory.loader = loader;
    4
    
                  
    5
            // Hook the class if found, else try next classloader.