This file contains 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/sh | |
# scripted by: @0xdeadbeer | |
# parameters: ./vfs-mount.sh [mount_tag] [mount_path] | |
mount -t virtiofs $1 $2 |
This file contains 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/python3 | |
import os, os.path | |
import sys | |
import time | |
from datetime import datetime | |
def help(): | |
print("Data reaper!") | |
print("Written by: @0xdeadbeer") | |
print(" - first_param: list containing file locations to backup") |
This file contains 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/python3 | |
import os, os.path | |
import sys | |
import time | |
from datetime import datetime | |
def help(): | |
print("Data reaper!") | |
print("Written by: @0xdeadbeer") | |
print(" - first_param: list containing file locations to backup") |
This file contains 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/python3 | |
import contfrac | |
import math | |
""" | |
Generously coded by me and my friend in the middle of a chill Sunday | |
Resources: | |
- https://crypto.stanford.edu/~dabo/pubs/papers/RSA-survey.pdf | |
- https://en.wikipedia.org/wiki/Wiener%27s_attack | |
- https://en.wikipedia.org/wiki/RSA_(cryptosystem) |
NewerOlder