Skip to content

Commit c42516e

Browse files
changes to launch
1 parent fcd259b commit c42516e

File tree

3 files changed

+44
-22
lines changed

3 files changed

+44
-22
lines changed

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="android-sploit-YOUR-USERNAME-HERE", # Replace with your own username
8+
version="1.0",
9+
author="Sonu Aryan",
10+
author_email="[email protected]",
11+
description="A package with adb command sets",
12+
long_description="README.md",
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/cosmo-organization/android-sploit",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: MIT License",
19+
"Operating System :: OS Independent",
20+
],
21+
python_requires='>=3.6',
22+
)
Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
from com.cosmo.sploit.codelight.codelighttool import CodeLightTool
2-
clt=CodeLightTool()
3-
clt.restart_server()
4-
try:
5-
nox_debug_id=clt.create_session(_host_ip="localhost",_host_port="62001",_id="nox_vm_debug_identification")
6-
clt.bind_active_session(_id=nox_debug_id)
7-
clt.bind_device_storage(_device_storage="storage/emulated/legacy")
8-
clt.show_packages()
9-
while True:
10-
try:
11-
pkg=input("Enter app package you want to hide or unhide:")
12-
clt.bind_app(_pkg=pkg)
13-
flag=input("unhide/hide:")
14-
clt.app_visibility(_status=flag)
15-
except KeyboardInterrupt:
16-
break
17-
clt.disconnect_device()
18-
clt.stop_server()
19-
except KeyboardInterrupt:
20-
print("Disconnecting unhandled")
21-
clt.disconnect_device()
22-
clt.stop_server()
1+
from com.cosmo.sploit.codelight.codelighttool import CodeLightTool
2+
clt=CodeLightTool()
3+
clt.restart_server()
4+
try:
5+
nox_debug_id=clt.create_session(_host_ip="localhost",_host_port="62001",_id="nox_vm_debug_identification")
6+
clt.bind_active_session(_id=nox_debug_id)
7+
clt.bind_device_storage(_device_storage="storage/emulated/legacy")
8+
clt.show_packages()
9+
while True:
10+
try:
11+
pkg=input("Enter app package you want to hide or unhide:")
12+
clt.bind_app(_pkg=pkg)
13+
flag=input("unhide/hide:")
14+
clt.app_visibility(_status=flag)
15+
except KeyboardInterrupt:
16+
break
17+
clt.disconnect_device()
18+
clt.stop_server()
19+
except KeyboardInterrupt:
20+
print("Disconnecting unhandled")
21+
clt.disconnect_device()
22+
clt.stop_server()
File renamed without changes.

0 commit comments

Comments
 (0)