Skip to content

Instantly share code, notes, and snippets.

@fxxntrbl
fxxntrbl / hurricane.py
Created April 11, 2022 06:26
assassin
from string import ascii_lowercase, digits
from requests import get, session
cookies = {"PHPSESSID": "l4g1fvabr4l3cccglkcgvs6lpl"}
target = "https://los.rubiya.kr/chall/assassin_14a1fd552c61c60f034879e5d4171373.php"
total = list(ascii_lowercase + digits)
password = ""
@fxxntrbl
fxxntrbl / gorgeous.py
Created April 9, 2022 20:11
Darkknight
from string import ascii_lowercase, digits
from requests import get
cookies = {"PHPSESSID": ""}
target = ""
total = list(ascii_lowercase + digits)
@fxxntrbl
fxxntrbl / selah.py
Created April 9, 2022 20:10
Orc, Orge, Golem
from string import ascii_lowercase, digits
from requests import get
cookies = {"PHPSESSID": ""}
target = "문제 url"
total = list(ascii_lowercase + digits)

앨범내라고 씨발 제발

@fxxntrbl
fxxntrbl / README.md
Last active May 26, 2021 18:33
Installing old macOS on your Mac

MacOS Release Date

El Capitan

date -u 1001000015

Official Release Date (10.11.0): September 30, 2015

Sierra

@fxxntrbl
fxxntrbl / main.py
Last active November 8, 2020 12:22
Understanding structures of Apple Swscan Server
import re
import asyncio
import plistlib
from parser import Parser
MIN_MACOS = 5
MAX_MACOS = 16
class macOS:
def __init__(self, product_id):
@fxxntrbl
fxxntrbl / asdf.py
Created August 8, 2020 11:51
Bugs Title 크롤링
import requests
from bs4 import BeautifulSoup
d = requests.get("https://music.bugs.co.kr/chart/track/day/total?chartdate=20190303")
d = d.text
soup = BeautifulSoup(d, 'html.parser')
data1 = soup.select('#CHARTday > table > tbody > tr:nth-child(1)')
for a in soup.find_all('p', {"class" : "title"}):
print(a.find('a').text)
@fxxntrbl
fxxntrbl / Divide_And_Conquer_Add.cpp
Created July 18, 2020 11:07
분할 정복 알고리즘 - (x * y) % m
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
ll f (ll x, ll y, ll m) {
if (y == 0) return 0;
if (y == 1) return x % m;
if (y % 2 == 1) {
ll sib = f (x, y - 1, m) % m;
return ((sib % m) + x % m) % m;
@fxxntrbl
fxxntrbl / Divide_And_Conquer_Multiple.cpp
Created July 18, 2020 11:06
분할 정복 알고리즘 - (x^y)%m
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
ll f (int x, ll y, int m) {
if (y == 0) return 1;
if (y == 1) return x % m;
if (y % 2 == 1) {
ll sib = f(x, y - 1, m) % m;
return ((sib % m) * (x % m)) % m;

Keybase proof

I hereby claim:

  • I am RIPAngel on github.
  • I am fxrcha (https://keybase.io/fxrcha) on keybase.
  • I have a public key whose fingerprint is 4BAC F358 1961 21E3 FFD2 3628 03F2 9A4C A84A 58DC

To claim this, I am signing this object: