id
int64
0
190k
prompt
stringlengths
21
13.4M
docstring
stringlengths
1
12k
32,991
from cog import BasePredictor, Input, Path import os import cv2 import time import torch import einops import random import subprocess import numpy as np from cldm.ddim_hacked import DDIMSampler from cldm.model import create_model, load_state_dict from cldm.hack import disable_verbosity from datasets.data_utils import ...
null
32,996
import torch import einops import ldm.modules.encoders.modules import ldm.modules.attention from transformers import logging from ldm.modules.attention import default def disable_verbosity(): def _hacked_clip_forward(self, text): def hack_everything(clip_skip=0): disable_verbosity() ldm.modules.encoders.module...
null
32,997
from datasets.ytb_vos import YoutubeVOSDataset from datasets.ytb_vis import YoutubeVISDataset from datasets.saliency_modular import SaliencyDataset from datasets.vipseg import VIPSegDataset from datasets.mvimagenet import MVImageNetDataset from datasets.sam import SAMDataset from datasets.dreambooth import DreamBoothDa...
null
32,998
import numpy as np import torch import cv2 The provided code snippet includes necessary dependencies for implementing the `mask_score` function. Write a Python function `def mask_score(mask)` to solve the following problem: Scoring the mask according to connectivity. Here is the function: def mask_score(mask): ...
Scoring the mask according to connectivity.
32,999
import numpy as np import torch import cv2 The provided code snippet includes necessary dependencies for implementing the `sobel` function. Write a Python function `def sobel(img, mask, thresh = 50)` to solve the following problem: Calculating the high-frequency map. Here is the function: def sobel(img, mask, thres...
Calculating the high-frequency map.
33,000
import numpy as np import torch import cv2 The provided code snippet includes necessary dependencies for implementing the `resize_and_pad` function. Write a Python function `def resize_and_pad(image, box)` to solve the following problem: Fitting an image to the box region while keeping the aspect ratio. Here is the ...
Fitting an image to the box region while keeping the aspect ratio.
33,001
import numpy as np import torch import cv2 def expand_image_mask(image, mask, ratio=1.4): h,w = image.shape[0], image.shape[1] H,W = int(h * ratio), int(w * ratio) h1 = int((H - h) // 2) h2 = H - h - h1 w1 = int((W -w) // 2) w2 = W -w - w1 pad_param_image = ((h1,h2),(w1,w2),(0,0)) pa...
null
33,002
import numpy as np import torch import cv2 def resize_box(yyxx, H,W,h,w): y1,y2,x1,x2 = yyxx y1,y2 = int(y1/H * h), int(y2/H * h) x1,x2 = int(x1/W * w), int(x2/W * w) y1,y2 = min(y1,h), min(y2,h) x1,x2 = min(x1,w), min(x2,w) return (y1,y2,x1,x2)
null
33,003
import numpy as np import torch import cv2 def get_bbox_from_mask(mask): h,w = mask.shape[0],mask.shape[1] if mask.sum() < 10: return 0,h,0,w rows = np.any(mask,axis=1) cols = np.any(mask,axis=0) y1,y2 = np.where(rows)[0][[0,-1]] x1,x2 = np.where(cols)[0][[0,-1]] return (y1,y2,x1,...
null
33,004
import numpy as np import torch import cv2 def expand_bbox(mask,yyxx,ratio=[1.2,2.0], min_crop=0): y1,y2,x1,x2 = yyxx ratio = np.random.randint( ratio[0] * 10, ratio[1] * 10 ) / 10 H,W = mask.shape[0], mask.shape[1] xc, yc = 0.5 * (x1 + x2), 0.5 * (y1 + y2) h = ratio * (y2-y1+1) w = ratio * (...
null
33,005
import numpy as np import torch import cv2 def box2squre(image, box): H,W = image.shape[0], image.shape[1] y1,y2,x1,x2 = box cx = (x1 + x2) // 2 cy = (y1 + y2) // 2 h,w = y2-y1, x2-x1 if h >= w: x1 = cx - h//2 x2 = cx + h//2 else: y1 = cy - w//2 y2 = cy + w...
null
33,006
import numpy as np import torch import cv2 def pad_to_square(image, pad_value = 255, random = False): H,W = image.shape[0], image.shape[1] if H == W: return image padd = abs(H - W) if random: padd_1 = int(np.random.randint(0,padd)) else: padd_1 = int(padd / 2) padd_2 =...
null
33,007
import numpy as np import torch import cv2 def box_in_box(small_box, big_box): y1,y2,x1,x2 = small_box y1_b, _, x1_b, _ = big_box y1,y2,x1,x2 = y1 - y1_b ,y2 - y1_b, x1 - x1_b ,x2 - x1_b return (y1,y2,x1,x2 )
null
33,008
import numpy as np import torch import cv2 def shuffle_image(image, N): height, width = image.shape[:2] block_height = height // N block_width = width // N blocks = [] for i in range(N): for j in range(N): block = image[i*block_height:(i+1)*block_height, j*block_width...
null
33,009
import numpy as np import torch import cv2 def q_x(x_0,t=65): '''Adding noise for and given image.''' x_0 = torch.from_numpy(x_0).float() / 127.5 - 1 num_steps = 100 betas = torch.linspace(-6,6,num_steps) betas = torch.sigmoid(betas)*(0.5e-2 - 1e-5)+1e-5 alphas = 1-betas alphas_prod = torch...
null
33,010
import numpy as np import torch import cv2 def q_x(x_0,t=65): '''Adding noise for and given image.''' x_0 = torch.from_numpy(x_0).float() / 127.5 - 1 num_steps = 100 betas = torch.linspace(-6,6,num_steps) betas = torch.sigmoid(betas)*(0.5e-2 - 1e-5)+1e-5 alphas = 1-betas alphas_prod = torch...
null
33,011
import numpy as np import torch import cv2 def random_dilate(seg, min=3, max=10): size = np.random.randint(min, max) kernel = get_random_structure(size) seg = cv2.dilate(seg,kernel,iterations = 1) return seg def random_erode(seg, min=3, max=10): size = np.random.randint(min, max) kernel = get_r...
null
33,012
import numpy as np import torch import cv2 def extract_target_boundary(img, target_mask): Ksize = 3 sobelx = cv2.Sobel(img, cv2.CV_64F, 1, 0, ksize=Ksize) sobely = cv2.Sobel(img, cv2.CV_64F, 0, 1, ksize=Ksize) # sobel-x sobel_X = cv2.convertScaleAbs(sobelx) # sobel-y sobel_Y = cv2.convert...
null
33,013
import torch import torch.nn as nn import torch.nn.functional as F class MobileNetV2(nn.Module): def __init__(self, num_classes=1000, norm_layer=nn.BatchNorm2d): super(MobileNetV2, self).__init__() output_stride = 8 self.multiplier = 1 if output_stride == 32: dilations = ...
null
33,032
import math import torch import torch.nn as nn import numpy as np from einops import rearrange from typing import Optional, Any from ldm.modules.attention import MemoryEfficientCrossAttention class AttnBlock(nn.Module): def __init__(self, in_channels): def forward(self, x): class MemoryEfficientAttnBlock(nn.M...
null
33,105
import torch import torch.nn as nn import timm import types import math import torch.nn.functional as F def _make_vit_b16_backbone( model, features=[96, 192, 384, 768], size=[384, 384], hooks=[2, 5, 8, 11], vit_features=768, use_readout="ignore", start_index=1, ): def _make_pretrained_deitb...
null
33,106
import torch import torch.nn as nn import torch.nn.functional as F from .base_model import BaseModel from .blocks import ( FeatureFusionBlock, FeatureFusionBlock_custom, Interpolate, _make_encoder, forward_vit, ) class FeatureFusionBlock_custom(nn.Module): def __init__(self, features, activati...
null
33,110
import torch import torch.nn as nn import torch.nn.functional as F from torch.utils.checkpoint import checkpoint from transformers import T5Tokenizer, T5EncoderModel, CLIPTokenizer, CLIPTextModel import torchvision.transforms as T import open_clip from ldm.util import default, count_params from PIL import Image from op...
Overwrite model.train with this function to make sure train/eval mode does not change anymore.
33,121
import torch import torch.nn as nn import numpy as np import pytorch_lightning as pl from torch.optim.lr_scheduler import LambdaLR from einops import rearrange, repeat from contextlib import contextmanager, nullcontext from functools import partial import itertools from tqdm import tqdm from torchvision.utils import ma...
Overwrite model.train with this function to make sure train/eval mode does not change anymore.
33,122
import torch import torch.nn as nn import numpy as np import pytorch_lightning as pl from torch.optim.lr_scheduler import LambdaLR from einops import rearrange, repeat from contextlib import contextmanager, nullcontext from functools import partial import itertools from tqdm import tqdm from torchvision.utils import ma...
null
33,123
import cv2 import einops import numpy as np import torch import random import gradio as gr import os import albumentations as A from PIL import Image import torchvision.transforms as T from datasets.data_utils import * from cldm.model import create_model, load_state_dict from cldm.ddim_hacked import DDIMSampler from o...
null
33,124
import cv2 import einops import numpy as np import torch import random import gradio as gr import os import albumentations as A from PIL import Image import torchvision.transforms as T from datasets.data_utils import * from cldm.model import create_model, load_state_dict from cldm.ddim_hacked import DDIMSampler from o...
null
33,125
import socket from urllib.request import urlopen import re import signal from os import system as run_command, kill as kill_process, popen as sys_url from pathlib import Path as pathlib_Path from zenipy.zenipy import entry as entry_token, error as Error from pgrep import pgrep as check_process def local(): s = sock...
null
33,126
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,127
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def EvilDroid(): if not os.path.isdir('tools/Android/Evil-Droid'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd An...
null
33,128
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,129
import os import time import sys from sys import exit from getch import pause from KitHack import main def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}========================...
null
33,130
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Andspoilt(): if not os.path.isdir('tools/Android/Andspoilt'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd And...
null
33,131
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,132
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,133
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,134
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,135
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,136
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,137
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,138
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def BeeLogger(): if not os.path.isdir('tools/Windows/BeeLogger'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Win...
null
33,139
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,140
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,141
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,142
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Ps1encode(): if not os.path.isdir('tools/Windows/ps1encode'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Win...
null
33,143
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,144
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,145
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,146
import os import time import sys from sys import exit from getch import pause from KitHack import main def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}========================...
null
33,147
import os import time import sys from sys import exit from getch import pause from KitHack import main def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}========================...
null
33,148
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,149
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,150
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,151
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,152
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def SocialFish(): if not os.path.isdir('tools/Phishing/SocialFish'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd ...
null
33,153
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,154
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,155
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Blackeye(): if not os.path.isdir('tools/Phishing/blackeye'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Phis...
null
33,156
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,157
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,158
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,159
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def AIOPhish(): if not os.path.isdir('tools/Phishing/AIOPhish'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Phis...
null
33,160
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,161
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,162
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Wifibroot(): if not os.path.isdir('tools/Wifi/WiFiBroot'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Wifi &...
null
33,163
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,164
import os import time import sys from sys import exit from getch import pause from KitHack import main def main(): def Ettercap(): if not os.path.isfile('/usr/bin/ettercap'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('apt-get install zlib1g zlib1g-dev && apt-get in...
null
33,165
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,166
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def WiFiPumpkin(): if not os.path.isdir('tools/Wifi/wifipumpkin3'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('apt install pyth...
null
33,167
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,168
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,169
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,170
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,171
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,172
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,173
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,174
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,175
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,176
import os import time import sys from sys import exit from getch import pause from KitHack import main def main(): def Wireshark(): if not os.path.isfile('/usr/bin/wireshark'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('apt-get install wireshark && setcap CAP_NET_R...
null
33,177
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,178
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,179
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def KawaiiDeauther(): if not os.path.isfile('tools/Wifi/KawaiiDeauther'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools &...
null
33,180
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Cupp(): if not os.path.isdir('tools/Passwords/cupp'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Passwords &...
null
33,181
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,182
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,183
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Brut3k1t(): if not os.path.isdir('tools/Passwords/brut3k1t'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Pas...
null
33,184
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def SocialBox(): if not os.path.isdir('tools/Passwords/SocialBox'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd P...
null
33,185
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,186
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,187
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def Brutedum(): if not os.path.isdir('tools/Passwords/Brutedum'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('apt install python...
null
33,188
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,189
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,190
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,191
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,192
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,193
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,194
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): def XAttacker(): if not os.path.isdir('tools/Web/XAttacker'): print("\n{0}[*] Downloading tool...{1}".format(GREEN, DEFAULT)) time.sleep(4) os.system('cd tools && cd Web && ...
null
33,195
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,196
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null
33,197
import os import time import sys from sys import exit from getch import pause from KitHack import main location = os.getcwd() def main(): print(start_main_menu) option = input("{0}KitHack >> {1}".format(RED, DEFAULT)) option = option.zfill(2) if option == '01': os.system('clear') print ('========={0}Tool{1}=...
null