UNDERCODE COMMUNITY
2.7K subscribers
1.24K photos
31 videos
2.65K files
81.1K links
πŸ¦‘ Undercode World!
@UndercodeCommunity


1️⃣ World first platform which Collect & Analyzes every New hacking method.
+ Pratice
@Undercode_Testing

2️⃣ Cyber & Tech NEWS:
@Undercode_News

3️⃣ CVE @Daily_CVE


✨ Youtube.com/Undercode
by Undercode.help
Download Telegram
Forwarded from UNDERCODE NEWS
The Russian authorities want licenses to be enforced for calls via Skype, Viber, WhatsApp
#International
Forwarded from UNDERCODE NEWS
In the US, Xiaomi has fallen out of favour. Now, along with Huawei, she is on the "black list"
#Technologies
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘2021 release: Added New Tools

Reverse Engineering
RAT Tools
Web Crawling
Payload Injector
Multitor Tools update
Added Tool in wifijamming

πŸ„ΈπŸ„½πŸ…‚πŸ…ƒπŸ„°πŸ„»πŸ„»πŸ„ΈπŸ…‚πŸ„°πŸ…ƒπŸ„ΈπŸ„ΎπŸ„½ & πŸ…πŸ…„πŸ„½ :

1) git clone https://github.com/Z4nzu/hackingtool.git

2) chmod -R 755 hackingtool

3) cd hackingtool

4) sudo pip3 install -r requirement.txt

5) bash install.sh

6) sudo hackingtool

7) choose option via numbers

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Support & Share undercode telegram links:

T.me/UndercodeUpdates

T.me/UndercodeTesting

T.me/DailyCve

T.me/UndercodeNews

t.me/UndercodeChat

T.me/Undercode_Testing

Enjoy & Stay safe !
For feedback: Feedback@Undercode.help
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
Forwarded from UNDERCODE NEWS
Xiaomi: The folding smartphone of the giant appeared in some pictures.
#Technologies
Forwarded from UNDERCODE NEWS
We were compelled by the pandemic to spend even more time at home, on steam.
#Analytiques
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘Bottle deployment method of web service and postman interface:

Bottle is a fast, concise, and lightweight WSIG-based micro web framework. This framework consists of only one .py file and does not depend on any other modules except the Python standard library.


from bottle import route, request, run<font></font>
import requests<font></font>
import cv2<font></font>
import numpy as np<font></font>
<font></font>
@route('/testimg',method='POST')#<font></font>
def testimg():<font></font>
try:<font></font>
params<font></font>
result = {}<font></font>
result["name"] = request.query.name#<font></font>
result["nums"] = request.query.nums<font></font>
<font></font>
#json<font></font>
#print(request.json)<font></font>
urllist = request.json["urllist"]<font></font>
#print(type(urllist))<font></font>
#print(urllist)<font></font>
imgPath = []<font></font>
for i in range(len(urllist)):<font></font>
imgPath.append(urllist[i])<font></font>
<font></font>
for i in range(len(imgPath)):<font></font>
#print(imgPath[i])<font></font>
#url<font></font>
rev = requests.get(imgPath[i], verify=False) # , timeout=config.timeout<font></font>
img = cv2.imdecode(np.frombuffer(rev.content, np.uint8), cv2.IMREAD_COLOR) # 片<font></font>
rec = 0<font></font>
<font></font>
return str(rec)<font></font>
except BaseException as e:<font></font>
logger.exception(e)<font></font>
return str(0)<font></font>
<font></font>
if name == "main":<font></font>
<font></font>
run(host='172.17.0.2', port=49166, debug=False)
Postman interface test.

params passes parameters.

The body transmits text data such as json.

@Phenicia

▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁
What about the undercode linux os ?
Forwarded from UNDERCODE NEWS
AI chatbot'Iruda' DB and deep learning conversation model discards from Scatter Lab.
#Updates
Forwarded from UNDERCODE NEWS
Amazon will allow other businesses to grow Alexa voice assistants from closed to open.
#International
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁

πŸ¦‘ How to list installed packages on Linux:

1.How to list installed packages on Arch Linux using pacman command
Pacman is the default package manager for Arch Linux and its derivatives such as Manjaro Linux.

To list all installed packages using pacman on Arch Linux and its variants, run:

$ pacman -Q
If you want to view a page of scrolling output, pipe the output to the more command, as shown below:

$ pacman -Q | more
To list only explicitly installed packages and versions:

$ pacman -Qe
To display only the total number of installed packages on Arch Linux, pipe the output of pacman to the wc command:

$ pacman -Q | wc -l
134
As you can see from the above output, I have installed 134 packages on my Arch Linux system.

2. How to list installed packages in Alpine Linux using apk command.
Apk, short for Alpine Package Manager, is the default package manager for Alpine Linux.

Command to view a list of installed packages in Alpine Linux:

$ apk info
If you want to see a list of installed packages, as well as the version number and description of the package, use the -vv flag as shown below:

$ apk info -vv
Conclusion:

lm_sensors-3.4.0-r6 - Collection of user space tools for general SMBus access and hardware monitoring.
man-1.14.3-r0 - dummy package for upgrade compatibility. this can safely be removed
libcrypto1.1-1.1.1i-r0 - Crypto library from openssl
libssl1.1-1.1.1i-r0 - SSL shared libraries
[...]
To list only the total number of all installed packages in Alpine Linux, pipe the output of apk information to the wc command as shown below:

$ apk info | wc -l
86
3. Let's list the installed packages in Debian, Ubuntu using the apt command.
Apt provides a high-level command line interface for the package management system in Debian, Ubuntu and other Debian based systems.

To display a list of installed packages on Debian, Ubuntu, Linux Mint and other DEB based systems, run:

$ apt list --installed
Display the total number of installed packages on Debian based systems, pipe the output of the apt command to the wc command as shown below:

$ apt list --installed | wc -l
2575
4. Let's list the installed packages in Debian, Ubuntu using the dpkg command.
Dpkg is a command line tool for installing, building, removing and managing Debian packages.

To list all installed packages with versions and details using the dpkg command, run:

$ dpkg -l
Alternatively, you can use the dpkg-query command to list all installed Debian packages.

$ dpkg-query -l
List only the total number of packages installed on Debian based systems:

$ dpkg -l | wc -l
2668
$ dpkg-query -l | wc -l
2668
5. Listing installed packages in RHEL, Fedora, CentOS using the yum command.
Yum, short for Yellowdog Updater, Modified, is a command line management utility for installing and managing packages on Red Hat based systems.

It has now been replaced by dnf in the latest RHEL and CentOS versions.

To find a list of installed packages on Fedora, RHEL and its clones such as CentOS, run:

$ yum list installed
▁ β–‚ β–„ Uπ•Ÿπ”»β’Ίπ«Δ†π”¬π““β“” β–„ β–‚ ▁