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
''' | |
GRAB DOMAIN BY DATE => MASSIVE DOMAIN TO IP | |
CODED BY ./MEICOOKIES | |
''' | |
import re, cfscrape, socket | |
scraper = cfscrape.create_scraper() | |
def grab_domain(date): |
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
import string | |
a = string.ascii_lowercase | |
p = "mei" | |
k = "biru" | |
if len(k) > len(p): k = k[:len(p)] | |
if len(k) < len(p): | |
i = 0 | |
while len(k) != len(p): | |
k += k[i % len(k)] | |
i += 1 |
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
open_alphabet = "abcdefghijklmnopqrstuvwxyz" | |
plain_text = input("Input plain text: ") | |
keyword = input("Input keyword: ") | |
cipher_alphabet = "" | |
for char in open_alphabet: | |
if char not in keyword: | |
cipher_alphabet += char | |
cipher_alphabet = keyword + cipher_alphabet | |
cipher_text = "" |
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
https://code.org/printcertificate/_1_475ee1cb71cd04a7c82f880aec6490dc |
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
# coded by ./meicookies | |
import requests as req | |
from bs4 import BeautifulSoup as bs | |
import base64, os, time | |
def clean(): | |
if os.name == 'nt': | |
os.system('cls') | |
else: | |
os.system('clear') |
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
https://osu.ppy.sh/beatmapsets/20989 | |
https://osu.ppy.sh/beatmapsets/1286287 | |
https://osu.ppy.sh/beatmapsets/320194 | |
https://osu.ppy.sh/beatmapsets/2184 | |
https://osu.ppy.sh/beatmapsets/409025 | |
https://osu.ppy.sh/beatmapsets/16161 | |
https://osu.ppy.sh/beatmapsets/12570 | |
https://osu.ppy.sh/beatmapsets/1142364 | |
https://osu.ppy.sh/beatmapsets/15932 | |
https://osu.ppy.sh/beatmapsets/1201058 |
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
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned |
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
""" | |
It's Python!...but without any control flow statements except for try-except, and no ways to loop except recursion! | |
Why does this exist??? | |
""" | |
def FizzBuzz(start, end): | |
try: | |
0 / end | |
result = "" | |
try: | |
0 / (start % 3) |
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 | |
# cod3d by ./meicookies | |
scan() { | |
domain=$(basename $1) | |
date=$(date | awk '{print $4}') | |
ip=$(dig +short $domain | head -n 1) | |
if [[ -n $ip ]] | |
then | |
resp=$(curl -m 3 -s http://reverse.fay.gg:18/?ip=$ip | jq -r '.data .domain[]' 2>/dev/null) | |
echo "$resp" >> result.txt |
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/python3 | |
import sys | |
from subprocess import PIPE, STDOUT, Popen | |
cmd = lambda command: Popen( | |
command, shell=True, | |
stdin=None, | |
stdout=PIPE, | |
stderr=STDOUT, | |
close_fds=True, |
NewerOlder