You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

iphack

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iphack - pypi Package Compare versions

Comparing version
1.3.6
to
1.3.7
+4
-3
iphack.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: iphack
Version: 1.3.6
Version: 1.3.7
Summary: the most ideal tool for finding out information about IP, etc.

@@ -118,5 +118,6 @@ Home-page: https://github.com/mishakorzik/IpHack

# get domain IP behind CF
# search IP
>>> from iphack import *
>>> iphack.domain.ip("google.com")
>>> iphack.search.ip("google.com")
1.0.126.229 / 1.0.158.92 / 1.0.160.34 / 1.0.161.31 / 1.0.164.79 / 1.0.167.84 / 1.0.167.205 / 1.0.168.165 / 1.0.169.41 / 1.0.247.243
>>>

@@ -123,0 +124,0 @@

@@ -28,3 +28,3 @@ import os, sys, json, random, platform, time, re, pyproxify

cyan = '\033[96m'
version = "1.3.6"
version = "1.3.7"
referer_list = ["https://www.google.com/", "https://www.youtube.com/", "https://www.twitter.com/", "https://www.discord.com/", "https://www.tiktok.com/", "https://www.instagram.com/", "https://check-host.net/", "https://github.com", "https://gitlab.com", "https://he1zen.rf.gd"]

@@ -370,3 +370,3 @@

class domain:
class search:
def ip(*text:str):

@@ -384,12 +384,15 @@ import requests, socket

check.connect((ip, port))
check.settimeout(5)
find = str(find)
check.sendall(bytes("get|domain,ip|info|"+find,'UTF-8'))
code = check.recv(256)
get = code.decode('utf-8')
if get == "-":
print("not found")
else:
get = get.replace(",", " / ")
print(get)
try:
check.settimeout(10)
code = check.recv(2048)
get = code.decode('utf-8')
if get == "-":
print("no results")
else:
get = get.replace(",", "/")
print(get)
except:
print("no results")

@@ -396,0 +399,0 @@ class check:

Metadata-Version: 2.1
Name: iphack
Version: 1.3.6
Version: 1.3.7
Summary: the most ideal tool for finding out information about IP, etc.

@@ -118,5 +118,6 @@ Home-page: https://github.com/mishakorzik/IpHack

# get domain IP behind CF
# search IP
>>> from iphack import *
>>> iphack.domain.ip("google.com")
>>> iphack.search.ip("google.com")
1.0.126.229 / 1.0.158.92 / 1.0.160.34 / 1.0.161.31 / 1.0.164.79 / 1.0.167.84 / 1.0.167.205 / 1.0.168.165 / 1.0.169.41 / 1.0.247.243
>>>

@@ -123,0 +124,0 @@

@@ -86,5 +86,6 @@ <img width="99.9%" src="https://raw.githubusercontent.com/mishakorzik/mishakorzik.menu.io/master/img/IpHack/20210822_200816.png"/>

# get domain IP behind CF
# search IP
>>> from iphack import *
>>> iphack.domain.ip("google.com")
>>> iphack.search.ip("google.com")
1.0.126.229 / 1.0.158.92 / 1.0.160.34 / 1.0.161.31 / 1.0.164.79 / 1.0.167.84 / 1.0.167.205 / 1.0.168.165 / 1.0.169.41 / 1.0.247.243
>>>

@@ -91,0 +92,0 @@

@@ -10,3 +10,3 @@ import setuptools

packages=['iphack'], # should match the package folder
version='1.3.6', # important for updates
version='1.3.7', # important for updates
python_requires=">=3.4",

@@ -13,0 +13,0 @@ license='Apache 2.0', # should match your chosen license