iposint: drop unmaintained

This commit is contained in:
Rick Farina (Zero_Chaos) 2023-09-06 13:21:01 -04:00
parent 8348324637
commit 865b31de45
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
4 changed files with 0 additions and 118 deletions

View file

@ -1 +0,0 @@
DIST iposint-20190615.tar.gz 7381 BLAKE2B a26ac5b7026fa745bff32c62ceea5a130f4466a1062989721d8127881b1dbd9161ed939ffacebc27e0d38bad750f6bd4072da02c85b463f4b95a19ed74bc3038 SHA512 7c2200be379ce8ac67a0c12469ce51514e81adc2e0991fae01d5f09eab8722905598ee010c28788707835da54bd91c8618fe5fec3f6f78eec9d1a44607d9377b

View file

@ -1,50 +0,0 @@
diff -ur a/ip-osint.py b/ip-osint.py
--- a/ip-osint.py 2019-06-10 07:11:15.000000000 +0300
+++ b/ip-osint.py 2019-07-19 14:38:04.124457732 +0300
@@ -127,7 +127,6 @@
parser.add_argument('-t','--target' , action='store', dest='target', help='type company name gona give you better result')
parser.add_argument('-T','--target_list' , action='store', dest='target_list', help='list of target')
parser.add_argument('-o','--output' , action='store', dest='output', help='output')
- parser.add_argument('--update', action='store_true', help='update lastest from git')
parser.add_argument('-v', '--verbose', action='store_true', help='turn on verbose message')
args = parser.parse_args()
@@ -135,10 +134,6 @@
# help_message()
sys.exit(0)
- core.install_webdrive()
- if args.update:
- update()
-
parsing_argument(args)
diff -ur a/modules/core.py b/modules/core.py
--- a/modules/core.py 2019-06-10 07:11:15.000000000 +0300
+++ b/modules/core.py 2019-07-19 14:41:58.685865246 +0300
@@ -157,12 +157,7 @@
options.add_argument("--no-sandbox")
options.add_argument("--ignore-certificate-errors")
- current_path = os.path.dirname(os.path.realpath(__file__))
- chromedrive_check = os.path.isfile(current_path + "/chromedriver")
- if not chromedrive_check:
- raise ValueError("Some thing wrong with chromedriver path")
-
- chromedriver = current_path + '/chromedriver'
+ chromedriver = '/usr/bin/chromedriver'
browser = webdriver.Chrome(executable_path=chromedriver, options=options)
browser.get(url)
diff -ur a/modules/securitytrails.py b/modules/securitytrails.py
--- a/modules/securitytrails.py 2019-06-10 07:11:15.000000000 +0300
+++ b/modules/securitytrails.py 2019-07-19 14:46:03.989559822 +0300
@@ -11,7 +11,6 @@
def __init__(self, options):
self.options = options
core.print_banner("Starting scraping IP from SecurityTrails")
- core.install_webdrive()
self.initial()
def initial(self):

View file

@ -1,59 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{10..11} )
inherit eutils python-single-r1
DESCRIPTION="Discovery IP Address of the target"
HOMEPAGE="https://github.com/j3ssie/IPOsint"
HASH_COMMIT="6b8d1dbeebc19e70fc92418c1af26511362182cb" # 20190615
SRC_URI="https://github.com/j3ssie/IPOsint/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="Unlicense"
SLOT=0
KEYWORDS="~amd64"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-python/selenium-requests[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
>=dev-python/beautifulsoup4-4.6.3:4[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.7.2[${PYTHON_USEDEP}]
dev-python/pyopenssl[${PYTHON_USEDEP}]
>=dev-python/urllib3-1.23[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]
')
www-apps/chromedriver-bin"
S="${WORKDIR}/IPOsint-${HASH_COMMIT}"
pkg_setup() {
python-single-r1_pkg_setup
}
src_prepare() {
eapply "${FILESDIR}"/${P}_minor_changes.patch
python_fix_shebang -q "${S}"
default
}
src_install() {
insinto "/usr/share/${PN}"
for x in modules ip-osint.py; do
doins -r "$x"
done
python_optimize "${D}/usr/share/${PN}"
make_wrapper "ip-osint" \
"${EPYTHON} /usr/share/${PN}/ip-osint.py"
dodoc README.md
}

View file

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>email@linxon.ru</email>
<name>Yury Martynov</name>
</maintainer>
</pkgmetadata>