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
package main | |
import ( | |
"fmt" | |
"os" | |
"strconv" | |
) | |
func main() { | |
total_discs, _ := strconv.Atoi(os.Args[1]) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Sources | |
# https://stackoverflow.com/questions/4643647/fast-prime-factorization-module | |
# https://stackoverflow.com/questions/49856115/inverse-of-a-powa-b-n-function-in-python-decryption-code | |
# Solutions on cryptohack.org | |
## Imports | |
import binascii | |
import base64 | |
from Crypto.Util.number import inverse, bytes_to_long, long_to_bytes | |
from sympy.ntheory import factorint |
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/env python3 | |
str_one = "444333 99966688 277733 7773323444664 84433 22244474433777, 99966688 277733 666552999. 99966688777 777744277733 666333 84433 443344477778 4447777 44466 99966688777 4466688777733. 84433 5533999 8666 84433 55566622255 4447777 22335556669. 4666 8666 727774447777." | |
str_two = "47777888 995559888 4555 47777888 44999988 666555997 : 8555444888477744488866888648833369!!" | |
t9_text = { | |
"2": "a", | |
"22": "b", | |
"222": "c", | |
"3": "d", |
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
# When you run, do it like this: | |
# docker run -it -v $PWD:/pwn pwnable /bin/bash | |
FROM ubuntu:latest | |
RUN mkdir /pwn | |
WORKDIR /pwn | |
# Since our install of h4ck1n6 tools involves a TZ setting... | |
ARG DEBIAN_FRONTEND=noninteractive |
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
import requests | |
import bs4 as bs | |
import os | |
# Try and make a directory to store the emojis | |
target_dir = "./jmr-emojis/" | |
try: | |
os.mkdir(target_dir) | |
except: |
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
# Tracks roadhouse style music, old preferably but new is good too. | |
# Thanks Eva Walker! | |
Bob Dorough - Don't Think Twice, its Alright | |
Inmates from Parchman Prison - Early In The Morning | |
Julius Daniels - 99 Year Blues | |
Sister Mary Nelson - Judgement | |
Herbie Hancock - Watermelon Man | |
Clarence Ashley - The coo Coo bird | |
The Elder's McIntorsh And Edwards Sanctified Singers - Since I Laid My Burden Down |
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
[ | |
{ | |
"_index": "packets-2020-07-13", | |
"_type": "pcap_file", | |
"_score": null, | |
"_source": { | |
"layers": { | |
"frame": { | |
"frame.interface_id": "0", | |
"frame.interface_id_tree": { |
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/env python3 | |
# This script will read my games CSV list and update the current | |
# price of the games in the sheet | |
import pandas as pd | |
import requests | |
import bs4 as bs | |
from tabulate import tabulate |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.